├── .gitignore ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── marcosholgado │ │ └── performancetest │ │ ├── FirstTest.kt │ │ ├── FourthTest.kt │ │ ├── SecondTest.kt │ │ ├── SeventhTest.kt │ │ ├── ThirdTest.kt │ │ ├── eighthTest │ │ ├── EighthTest.kt │ │ ├── IgnoreLeaks.kt │ │ └── MyLeakRunListener.kt │ │ ├── fifthtest │ │ ├── FifthTest.kt │ │ ├── GfxPercentileMonitor.kt │ │ └── PercentileMonitor.kt │ │ ├── helpers │ │ ├── MyFactory.kt │ │ └── MyMonitor.kt │ │ ├── ninthTest │ │ ├── LeakTest.kt │ │ ├── MyOtherLeakRunListener.kt │ │ └── NinthTest.kt │ │ └── sixthtest │ │ ├── ActivityPerfTestRule.kt │ │ ├── PerfMonitor.kt │ │ ├── PerformanceTest.kt │ │ └── SixthTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── marcosholgado │ │ │ └── performancetest │ │ │ ├── LeakActivity.java │ │ │ ├── MainActivity.kt │ │ │ ├── MainAdapter.kt │ │ │ └── MainViewHolder.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_leak.xml │ │ ├── activity_main.xml │ │ └── item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── marcosholgado │ └── performancetest │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/.gitignore -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/FirstTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/FirstTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/FourthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/FourthTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/SecondTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/SecondTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/SeventhTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/SeventhTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/ThirdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/ThirdTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/eighthTest/EighthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/eighthTest/EighthTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/eighthTest/IgnoreLeaks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/eighthTest/IgnoreLeaks.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/eighthTest/MyLeakRunListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/eighthTest/MyLeakRunListener.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/fifthtest/FifthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/fifthtest/FifthTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/fifthtest/GfxPercentileMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/fifthtest/GfxPercentileMonitor.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/fifthtest/PercentileMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/fifthtest/PercentileMonitor.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/helpers/MyFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/helpers/MyFactory.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/helpers/MyMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/helpers/MyMonitor.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/ninthTest/LeakTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/ninthTest/LeakTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/ninthTest/MyOtherLeakRunListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/ninthTest/MyOtherLeakRunListener.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/ninthTest/NinthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/ninthTest/NinthTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/ActivityPerfTestRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/ActivityPerfTestRule.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/PerfMonitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/PerfMonitor.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/PerformanceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/PerformanceTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/SixthTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/androidTest/java/com/marcosholgado/performancetest/sixthtest/SixthTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/marcosholgado/performancetest/LeakActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/java/com/marcosholgado/performancetest/LeakActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/marcosholgado/performancetest/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/java/com/marcosholgado/performancetest/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/marcosholgado/performancetest/MainAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/java/com/marcosholgado/performancetest/MainAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/marcosholgado/performancetest/MainViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/java/com/marcosholgado/performancetest/MainViewHolder.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_leak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/layout/activity_leak.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/layout/item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/marcosholgado/performancetest/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/app/src/test/java/com/marcosholgado/performancetest/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosholgado/performance-test/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------