Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52f6ba9a authored by Colin Cross's avatar Colin Cross
Browse files

Move SystemPerfTest out of java.* namespace

dx doesn't like classes in the java.* namespace unless it is compiling
a core library.  Move SystemPerfTest to
android.perftests.SystemPerfTest.

Test: builds
Change-Id: I24951d2c9a71d8bb873763d1ccd2f1a67f2be64e
parent b70ef8d7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ jint JNI_OnLoad(JavaVM* jvm, void*) {
        return JNI_ERR;
    }

    if (registerNativeMethods(env, "java/lang/perftests/SystemPerfTest",
    if (registerNativeMethods(env, "android/perftests/SystemPerfTest",
            sMethods, NELEM(sMethods)) == -1) {
        return JNI_ERR;
    }
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package java.lang.perftests;
package android.perftests;

import android.perftests.utils.BenchmarkState;
import android.perftests.utils.PerfStatusReporter;