├── .gitignore ├── LICENSE ├── README.md ├── app-debug.apk └── helloworld ├── .gitignore ├── app ├── .gitignore ├── build.gradle ├── dataset.txt ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── helloworld │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── helloworld │ │ │ ├── Activity2.java │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── picture1.xml │ │ ├── picture11.jpg │ │ ├── picture2.xml │ │ └── picture22.jpg │ │ ├── layout │ │ ├── activity2.xml │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ └── song1.mp3 │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── example │ └── helloworld │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/README.md -------------------------------------------------------------------------------- /app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/app-debug.apk -------------------------------------------------------------------------------- /helloworld/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/.gitignore -------------------------------------------------------------------------------- /helloworld/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /helloworld/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/build.gradle -------------------------------------------------------------------------------- /helloworld/app/dataset.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helloworld/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/proguard-rules.pro -------------------------------------------------------------------------------- /helloworld/app/src/androidTest/java/com/example/helloworld/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/androidTest/java/com/example/helloworld/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /helloworld/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /helloworld/app/src/main/java/com/example/helloworld/Activity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/java/com/example/helloworld/Activity2.java -------------------------------------------------------------------------------- /helloworld/app/src/main/java/com/example/helloworld/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/java/com/example/helloworld/MainActivity.java -------------------------------------------------------------------------------- /helloworld/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/drawable/picture1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/drawable/picture1.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/drawable/picture11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/drawable/picture11.jpg -------------------------------------------------------------------------------- /helloworld/app/src/main/res/drawable/picture2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/drawable/picture2.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/drawable/picture22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/drawable/picture22.jpg -------------------------------------------------------------------------------- /helloworld/app/src/main/res/layout/activity2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/layout/activity2.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /helloworld/app/src/main/res/raw/song1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/raw/song1.mp3 -------------------------------------------------------------------------------- /helloworld/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /helloworld/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /helloworld/app/src/test/java/com/example/helloworld/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/app/src/test/java/com/example/helloworld/ExampleUnitTest.java -------------------------------------------------------------------------------- /helloworld/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/build.gradle -------------------------------------------------------------------------------- /helloworld/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/gradle.properties -------------------------------------------------------------------------------- /helloworld/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /helloworld/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /helloworld/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/gradlew -------------------------------------------------------------------------------- /helloworld/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/gradlew.bat -------------------------------------------------------------------------------- /helloworld/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/local.properties -------------------------------------------------------------------------------- /helloworld/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amirrezahmi/data-collector/HEAD/helloworld/settings.gradle --------------------------------------------------------------------------------