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

Commit fd41b4d2 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "BouncyBall: Rename package" into main

parents 052d5fd9 40d47417
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ On a properly set up device, it is expected that this app never drops a frame.
### Helpful "flags" to flip

The source code (in
`app/src/main/java/com/prefabulated/bouncyball/BouncyBallActivity.java`) has a
`app/src/main/java/com/android/test/bouncyball/BouncyBallActivity.java`) has a
few constants which can be changed to help with debugging and testing.  The
app needs to be recompiled after any of these have been changed.

@@ -55,7 +55,7 @@ $ adb install ${ANDROID_PRODUCT_OUT}/system/app/BouncyBallTest/BouncyBallTest.ap
Assuming the app is installed on the device:

```
$ adb shell am start com.prefabulated.bouncyball/com.prefabulated.bouncyball.BouncyBallActivity
$ adb shell am start com.android.test.bouncyball/com.android.test.bouncyball.BouncyBallActivity
```

## Using Perfetto for analysis
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.prefabulated.bouncyball;
package com.android.test.bouncyball;

import android.app.Application;
import android.test.ApplicationTestCase;
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.prefabulated.bouncyball">
     package="com.android.test.bouncyball">

    <application android:allowBackup="true"
         android:icon="@mipmap/ic_launcher"
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.prefabulated.bouncyball;
package com.android.test.bouncyball;

import android.hardware.display.DisplayManager;
import android.os.Bundle;
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.prefabulated.bouncyball;
package com.android.test.bouncyball;

import android.content.Context;
import android.graphics.Canvas;
Loading