├── .github ├── README.md └── images │ └── screenshot.png ├── .gitignore ├── EasyAlertsAndroidStudioProject~ ├── .gradle │ ├── 5.4.1 │ │ ├── executionHistory │ │ │ ├── executionHistory.bin │ │ │ └── executionHistory.lock │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileContent │ │ │ └── fileContent.lock │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ ├── gc.properties │ │ └── javaCompile │ │ │ ├── classAnalysis.bin │ │ │ ├── jarAnalysis.bin │ │ │ ├── javaCompile.lock │ │ │ └── taskHistory.bin │ ├── buildOutputCleanup │ │ ├── buildOutputCleanup.lock │ │ ├── cache.properties │ │ └── outputFiles.bin │ └── vcs-1 │ │ └── gc.properties ├── .idea │ ├── .gitignore │ ├── .name │ ├── caches │ │ ├── build_file_checksums.ser │ │ └── gradle_models.ser │ ├── codeStyles │ │ └── Project.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── libraries │ │ ├── Gradle____unity_libs_classes_jar.xml │ │ ├── Gradle__androidx_annotation_annotation_1_0_0.xml │ │ ├── Gradle__androidx_appcompat_appcompat_1_0_0_aar.xml │ │ ├── Gradle__androidx_arch_core_core_common_2_0_0.xml │ │ ├── Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml │ │ ├── Gradle__androidx_asynclayoutinflater_asynclayoutinflater_1_0_0_aar.xml │ │ ├── Gradle__androidx_collection_collection_1_0_0.xml │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml │ │ ├── Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3.xml │ │ ├── Gradle__androidx_coordinatorlayout_coordinatorlayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_core_core_1_0_0_aar.xml │ │ ├── Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml │ │ ├── Gradle__androidx_customview_customview_1_0_0_aar.xml │ │ ├── Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml │ │ ├── Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_fragment_fragment_1_0_0_aar.xml │ │ ├── Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml │ │ ├── Gradle__androidx_legacy_legacy_support_core_ui_1_0_0_aar.xml │ │ ├── Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_common_2_0_0.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_runtime_2_0_0_aar.xml │ │ ├── Gradle__androidx_lifecycle_lifecycle_viewmodel_2_0_0_aar.xml │ │ ├── Gradle__androidx_loader_loader_1_0_0_aar.xml │ │ ├── Gradle__androidx_localbroadcastmanager_localbroadcastmanager_1_0_0_aar.xml │ │ ├── Gradle__androidx_print_print_1_0_0_aar.xml │ │ ├── Gradle__androidx_slidingpanelayout_slidingpanelayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_swiperefreshlayout_swiperefreshlayout_1_0_0_aar.xml │ │ ├── Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml │ │ ├── Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml │ │ ├── Gradle__androidx_test_monitor_1_2_0_aar.xml │ │ ├── Gradle__androidx_test_runner_1_2_0_aar.xml │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_1_0_0_aar.xml │ │ ├── Gradle__androidx_vectordrawable_vectordrawable_animated_1_0_0_aar.xml │ │ ├── Gradle__androidx_versionedparcelable_versionedparcelable_1_0_0_aar.xml │ │ ├── Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml │ │ ├── Gradle__com_google_code_findbugs_jsr305_2_0_1.xml │ │ ├── Gradle__com_squareup_javawriter_2_1_1.xml │ │ ├── Gradle__javax_inject_javax_inject_1.xml │ │ ├── Gradle__junit_junit_4_12.xml │ │ ├── Gradle__net_sf_kxml_kxml2_2_3_0.xml │ │ ├── Gradle__org_hamcrest_hamcrest_core_1_3.xml │ │ ├── Gradle__org_hamcrest_hamcrest_integration_1_3.xml │ │ └── Gradle__org_hamcrest_hamcrest_library_1_3.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── app │ │ │ └── EasyAndroidAlerts.app.iml │ │ └── unity │ │ │ └── EasyAndroidAlerts.unity.iml │ ├── runConfigurations.xml │ ├── vcs.xml │ └── workspace.xml ├── EasyAndroidAlerts.iml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── nrjwolf │ │ │ └── androidtools │ │ │ └── easyandroidalerts │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── nrjwolf │ │ │ │ └── androidtools │ │ │ │ └── easyandroidalerts │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.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 │ │ └── nrjwolf │ │ └── androidtools │ │ └── easyandroidalerts │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── settings.gradle └── unity │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── libs │ └── classes.jar │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── nrjwolf │ │ └── androidtools │ │ └── unity │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── nrjwolf │ │ │ └── androidtools │ │ │ └── unity │ │ │ ├── JavaMessageHandler.java │ │ │ ├── NativeAlerts.java │ │ │ └── UnityBridge.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── nrjwolf │ └── androidtools │ └── unity │ └── ExampleUnitTest.java ├── LICENSE.md ├── LICENSE.md.meta ├── Plugins.meta ├── Plugins ├── EasyAndroidAlerts.meta └── EasyAndroidAlerts │ ├── Android.meta │ ├── Android │ ├── EasyAndroidAlerts.aar │ └── EasyAndroidAlerts.aar.meta │ ├── Runtime.meta │ └── Runtime │ ├── EasyAndroidAlerts.cs │ ├── EasyAndroidAlerts.cs.meta │ ├── Nrjwolf.Tools.EasyAndroidAlerts.asmdef │ └── Nrjwolf.Tools.EasyAndroidAlerts.asmdef.meta ├── package.json └── package.json.meta /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/.github/images/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/5.4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Apr 30 23:03:55 WITA 2020 2 | gradle.version=5.4.1 3 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/.name: -------------------------------------------------------------------------------- 1 | EasyAndroidAlerts -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/compiler.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/gradle.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle____unity_libs_classes_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle____unity_libs_classes_jar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_annotation_annotation_1_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_annotation_annotation_1_0_0.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_appcompat_appcompat_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_arch_core_core_common_2_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_arch_core_core_common_2_0_0.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_arch_core_core_runtime_2_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_asynclayoutinflater_asynclayoutinflater_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_asynclayoutinflater_asynclayoutinflater_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_collection_collection_1_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_collection_collection_1_0_0.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_1_1_3_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_constraintlayout_constraintlayout_solver_1_1_3.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_coordinatorlayout_coordinatorlayout_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_core_core_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_core_core_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_cursoradapter_cursoradapter_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_customview_customview_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_documentfile_documentfile_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_drawerlayout_drawerlayout_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_fragment_fragment_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_fragment_fragment_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_interpolator_interpolator_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_ui_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_ui_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_legacy_legacy_support_core_utils_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_common_2_0_0.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_2_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_livedata_core_2_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_runtime_2_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_lifecycle_lifecycle_viewmodel_2_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_loader_loader_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_localbroadcastmanager_localbroadcastmanager_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_localbroadcastmanager_localbroadcastmanager_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_print_print_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_print_print_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_slidingpanelayout_slidingpanelayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_slidingpanelayout_slidingpanelayout_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_swiperefreshlayout_swiperefreshlayout_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_swiperefreshlayout_swiperefreshlayout_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_espresso_espresso_core_3_2_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_espresso_espresso_idling_resource_3_2_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_monitor_1_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_monitor_1_2_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_runner_1_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_test_runner_1_2_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_vectordrawable_vectordrawable_animated_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_versionedparcelable_versionedparcelable_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__androidx_viewpager_viewpager_1_0_0_aar.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__javax_inject_javax_inject_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__javax_inject_javax_inject_1.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__junit_junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__junit_junit_4_12.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/misc.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/modules.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/modules/app/EasyAndroidAlerts.app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/modules/app/EasyAndroidAlerts.app.iml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/modules/unity/EasyAndroidAlerts.unity.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/modules/unity/EasyAndroidAlerts.unity.iml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/vcs.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/.idea/workspace.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/EasyAndroidAlerts.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/EasyAndroidAlerts.iml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/build.gradle -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/proguard-rules.pro -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/androidTest/java/nrjwolf/androidtools/easyandroidalerts/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/androidTest/java/nrjwolf/androidtools/easyandroidalerts/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/java/nrjwolf/androidtools/easyandroidalerts/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/java/nrjwolf/androidtools/easyandroidalerts/MainActivity.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/app/src/test/java/nrjwolf/androidtools/easyandroidalerts/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/app/src/test/java/nrjwolf/androidtools/easyandroidalerts/ExampleUnitTest.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/build.gradle -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/gradle.properties -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/gradlew -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/gradlew.bat -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/local.properties -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':unity' 2 | rootProject.name='EasyAndroidAlerts' 3 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/build.gradle -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/libs/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/libs/classes.jar -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/proguard-rules.pro -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/androidTest/java/nrjwolf/androidtools/unity/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/androidTest/java/nrjwolf/androidtools/unity/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/main/java/nrjwolf/androidtools/unity/JavaMessageHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/main/java/nrjwolf/androidtools/unity/JavaMessageHandler.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/main/java/nrjwolf/androidtools/unity/NativeAlerts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/main/java/nrjwolf/androidtools/unity/NativeAlerts.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/main/java/nrjwolf/androidtools/unity/UnityBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/main/java/nrjwolf/androidtools/unity/UnityBridge.java -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /EasyAlertsAndroidStudioProject~/unity/src/test/java/nrjwolf/androidtools/unity/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/EasyAlertsAndroidStudioProject~/unity/src/test/java/nrjwolf/androidtools/unity/ExampleUnitTest.java -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/LICENSE.md.meta -------------------------------------------------------------------------------- /Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins.meta -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts.meta -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Android.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Android.meta -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Android/EasyAndroidAlerts.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Android/EasyAndroidAlerts.aar -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Android/EasyAndroidAlerts.aar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Android/EasyAndroidAlerts.aar.meta -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Runtime.meta -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Runtime/EasyAndroidAlerts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Runtime/EasyAndroidAlerts.cs -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Runtime/EasyAndroidAlerts.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Runtime/EasyAndroidAlerts.cs.meta -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Runtime/Nrjwolf.Tools.EasyAndroidAlerts.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Runtime/Nrjwolf.Tools.EasyAndroidAlerts.asmdef -------------------------------------------------------------------------------- /Plugins/EasyAndroidAlerts/Runtime/Nrjwolf.Tools.EasyAndroidAlerts.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/Plugins/EasyAndroidAlerts/Runtime/Nrjwolf.Tools.EasyAndroidAlerts.asmdef.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nrjwolf/unity-android-easy-native-alerts/HEAD/package.json.meta --------------------------------------------------------------------------------