├── .gitignore ├── .idea ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── tj │ │ └── beataddiction │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── tj │ │ │ └── beataddiction │ │ │ ├── Alarms.java │ │ │ ├── AppInfo.java │ │ │ ├── AppInfoActivity.java │ │ │ ├── AppInfoListAdapter.java │ │ │ ├── BackgroundService.java │ │ │ ├── BootBroadcastReceiver.java │ │ │ ├── ChartActivity.java │ │ │ ├── DatabaseHelper.java │ │ │ ├── MainActivity.java │ │ │ ├── NotificationReceiver.java │ │ │ ├── ResetDataReceiver.java │ │ │ ├── TrackedAppInfo.java │ │ │ ├── Utils.java │ │ │ └── WelcomeActivity.java │ └── res │ │ ├── drawable-nodpi │ │ └── example_picture.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── app_logo.png │ │ ├── cross.png │ │ ├── ic_launcher_background.xml │ │ ├── splash_background.xml │ │ ├── splash_screen_logo.png │ │ ├── tick.png │ │ └── warning.png │ │ ├── layout │ │ ├── activity_app_info.xml │ │ ├── activity_chart.xml │ │ ├── activity_main.xml │ │ ├── activity_welcome.xml │ │ ├── app_list.xml │ │ ├── checkbox.xml │ │ └── spinner_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 │ └── tj │ └── beataddiction │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/androidTest/java/tj/beataddiction/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/androidTest/java/tj/beataddiction/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/Alarms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/Alarms.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/AppInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/AppInfo.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/AppInfoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/AppInfoActivity.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/AppInfoListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/AppInfoListAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/BackgroundService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/BackgroundService.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/BootBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/BootBroadcastReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/ChartActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/ChartActivity.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/DatabaseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/DatabaseHelper.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/NotificationReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/NotificationReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/ResetDataReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/ResetDataReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/TrackedAppInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/TrackedAppInfo.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/Utils.java -------------------------------------------------------------------------------- /app/src/main/java/tj/beataddiction/WelcomeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/java/tj/beataddiction/WelcomeActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/example_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable-nodpi/example_picture.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/cross.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/splash_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash_screen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/splash_screen_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/tick.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/drawable/warning.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_app_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/activity_app_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/activity_chart.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/activity_welcome.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/app_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/app_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/checkbox.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/layout/spinner_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/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/tanjim17/BeatAddiction/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/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/tj/beataddiction/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/app/src/test/java/tj/beataddiction/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tanjim17/BeatAddiction/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------