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

Commit 40d47417 authored by Greg Kaiser's avatar Greg Kaiser
Browse files

BouncyBall: Rename package

We inherited the "com.prefabulated" from TouchLatency.  That's a
reference to an old engineering inside joke.

With the intention of this app being used widely, as part of
qualifying devices, we lose the humor to help assure clarity
and avoid confusion (especially with folks unfamiliar with the
joke).

There are already 44 test apps in this project using
"com.android.test", so we switch to that.

Test: Local build; try out README instructions
Bug: 408044970
Flag: EXEMPT for test app
Change-Id: Ieca6a4fe2ecc05180beec59487dde86ac967f7f7
parent 3d57c36d
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