├── LICENSE ├── README.md ├── README_ZH.md ├── SafetyDetect-AppsCheck-Kotlin-Demo ├── AppsCheck.png ├── LICENSE ├── README.md ├── README_ZH.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── safetydetect │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ ├── MaliciousAppsDataListAdapter.kt │ │ │ └── SafetyDetectAppsCheckAPIFragment.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_bg_round.xml │ │ ├── btn_round_corner_normal.xml │ │ ├── btn_round_corner_small.xml │ │ ├── btn_round_green.xml │ │ ├── btn_round_normal.xml │ │ ├── btn_round_processing.xml │ │ ├── btn_round_red.xml │ │ ├── btn_round_yellow.xml │ │ ├── ic_launcher_background.xml │ │ ├── tab_menu_appscheck.xml │ │ ├── tab_menu_bg.xml │ │ └── tab_menu_sysintegrity.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fg_appscheck.xml │ │ ├── fg_content.xml │ │ └── item_list_app.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 │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── SafetyDetect-Kotlin-Demo ├── LICENSE ├── README.md ├── README_ZH.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── safetydetect │ │ │ └── sample │ │ │ ├── CommListView.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MaliciousAppsDataListAdapter.kt │ │ │ ├── SafetyDetectAppsCheckAPIFragment.kt │ │ │ ├── SafetyDetectSysIntegrityAPIFragment.kt │ │ │ ├── SafetyDetectUrlCheckAPIFragment.kt │ │ │ ├── SafetyDetectUserDetectAPIFragment.kt │ │ │ └── SafetyDetectWifiDetectAPIFragment.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_bg_round.xml │ │ ├── btn_round_corner_normal.xml │ │ ├── btn_round_corner_small.xml │ │ ├── btn_round_green.xml │ │ ├── btn_round_normal.xml │ │ ├── btn_round_processing.xml │ │ ├── btn_round_red.xml │ │ ├── btn_round_yellow.xml │ │ ├── ic_launcher_background.xml │ │ ├── tab_menu_appscheck.xml │ │ ├── tab_menu_bg.xml │ │ ├── tab_menu_sysintegrity.xml │ │ ├── tab_menu_urlcheck.xml │ │ └── tab_menu_userdetect.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fg_appscheck.xml │ │ ├── fg_content.xml │ │ ├── fg_sysintegrity.xml │ │ ├── fg_urlcheck.xml │ │ ├── fg_userdetect.xml │ │ ├── fg_wifidetect.xml │ │ └── item_list_app.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 │ │ ├── dimens.xml │ │ ├── stringArray.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── sysintegrity.png ├── SafetyDetect-SysIntegrity-Kotlin-Demo ├── LICENSE ├── README.md ├── README_ZH.md ├── SysIntegrity.png ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── safetydetect │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ └── SafetyDetectSysIntegrityAPIFragment.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_bg_round.xml │ │ ├── btn_round_corner_normal.xml │ │ ├── btn_round_corner_small.xml │ │ ├── btn_round_green.xml │ │ ├── btn_round_normal.xml │ │ ├── btn_round_processing.xml │ │ ├── btn_round_red.xml │ │ ├── btn_round_yellow.xml │ │ ├── ic_launcher_background.xml │ │ ├── tab_menu_bg.xml │ │ └── tab_menu_sysintegrity.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fg_content.xml │ │ └── fg_sysintegrity.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 │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── SafetyDetect-URLCheck-Kotlin-Demo ├── LICENSE ├── README.md ├── README_ZH.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── safetydetect │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ └── SafetyDetectUrlCheckAPIFragment.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_bg_round.xml │ │ ├── btn_round_corner_normal.xml │ │ ├── btn_round_corner_small.xml │ │ ├── btn_round_green.xml │ │ ├── btn_round_normal.xml │ │ ├── btn_round_processing.xml │ │ ├── btn_round_red.xml │ │ ├── btn_round_yellow.xml │ │ ├── ic_launcher_background.xml │ │ ├── tab_menu_appscheck.xml │ │ ├── tab_menu_bg.xml │ │ └── tab_menu_sysintegrity.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fg_content.xml │ │ └── fg_urlcheck.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 │ │ ├── dimens.xml │ │ ├── stringArray.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── output │ └── no_threats_found.png └── settings.gradle ├── SafetyDetect-UserDetect-Kotlin-Demo ├── LICENSE ├── README.md ├── README_ZH.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── safetydetect │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ └── SafetyDetectUserDetectAPIFragment.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_bg_round.xml │ │ ├── btn_round_corner_normal.xml │ │ ├── btn_round_corner_small.xml │ │ ├── btn_round_green.xml │ │ ├── btn_round_normal.xml │ │ ├── btn_round_processing.xml │ │ ├── btn_round_red.xml │ │ ├── btn_round_yellow.xml │ │ ├── ic_launcher_background.xml │ │ ├── tab_menu_appscheck.xml │ │ ├── tab_menu_bg.xml │ │ └── tab_menu_sysintegrity.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fg_content.xml │ │ └── fg_userdetect.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 │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── output │ └── detection_and_verify_succeed.png └── settings.gradle └── SafetyDetect-WifiDetect-Kotlin-Demo ├── LICENSE ├── README.md ├── README_ZH.md ├── WifiDetect.png ├── app ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── huawei │ │ └── hms │ │ └── sysintegrity │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── safetydetect │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ └── SafetyDetectWifiDetectAPIFragment.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── btn_bg_round.xml │ │ ├── btn_round_corner_normal.xml │ │ ├── btn_round_corner_small.xml │ │ ├── btn_round_green.xml │ │ ├── btn_round_normal.xml │ │ ├── btn_round_processing.xml │ │ ├── btn_round_red.xml │ │ ├── btn_round_yellow.xml │ │ ├── ic_launcher_background.xml │ │ ├── tab_menu_bg.xml │ │ ├── tab_menu_sysintegrity.xml │ │ └── tab_menu_wifidetect.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fg_content.xml │ │ └── fg_wifidetect.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 │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── huawei │ └── safetydetectsample │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/AppsCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/AppsCheck.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/LICENSE -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/README.md -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MaliciousAppsDataListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MaliciousAppsDataListAdapter.kt -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectAppsCheckAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectAppsCheckAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/fg_appscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/fg_appscheck.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/fg_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/fg_content.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/item_list_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/layout/item_list_app.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/gradle.properties -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/gradlew -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-AppsCheck-Kotlin-Demo/gradlew.bat -------------------------------------------------------------------------------- /SafetyDetect-AppsCheck-Kotlin-Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='safety-detect-android-sample' 3 | -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/LICENSE -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/README.md -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/CommListView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/CommListView.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MaliciousAppsDataListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MaliciousAppsDataListAdapter.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectAppsCheckAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectAppsCheckAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectSysIntegrityAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectSysIntegrityAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUrlCheckAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUrlCheckAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUserDetectAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUserDetectAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectWifiDetectAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectWifiDetectAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_urlcheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_urlcheck.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_userdetect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_userdetect.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_appscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_appscheck.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_content.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_urlcheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_urlcheck.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_userdetect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_userdetect.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_wifidetect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/fg_wifidetect.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/layout/item_list_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/layout/item_list_app.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/values/stringArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/values/stringArray.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/gradle.properties -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/gradlew -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/gradlew.bat -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='safety-detect-android-sample' 3 | -------------------------------------------------------------------------------- /SafetyDetect-Kotlin-Demo/sysintegrity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-Kotlin-Demo/sysintegrity.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/LICENSE -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/README.md -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/SysIntegrity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/SysIntegrity.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectSysIntegrityAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectSysIntegrityAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/layout/fg_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/layout/fg_content.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/layout/fg_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/layout/fg_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/gradle.properties -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/gradlew -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-SysIntegrity-Kotlin-Demo/gradlew.bat -------------------------------------------------------------------------------- /SafetyDetect-SysIntegrity-Kotlin-Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='safety-detect-android-sample' 3 | -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/LICENSE -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/README.md -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUrlCheckAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUrlCheckAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/layout/fg_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/layout/fg_content.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/layout/fg_urlcheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/layout/fg_urlcheck.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/stringArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/stringArray.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/gradle.properties -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/gradlew -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/gradlew.bat -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/output/no_threats_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-URLCheck-Kotlin-Demo/output/no_threats_found.png -------------------------------------------------------------------------------- /SafetyDetect-URLCheck-Kotlin-Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='safety-detect-android-sample' 3 | -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/LICENSE -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/README.md -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUserDetectAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectUserDetectAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_appscheck.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/layout/fg_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/layout/fg_content.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/layout/fg_userdetect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/layout/fg_userdetect.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/gradle.properties -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/gradlew -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/gradlew.bat -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/output/detection_and_verify_succeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-UserDetect-Kotlin-Demo/output/detection_and_verify_succeed.png -------------------------------------------------------------------------------- /SafetyDetect-UserDetect-Kotlin-Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='safety-detect-kotlin-sample' 3 | -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/LICENSE -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/README.md -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/README_ZH.md -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/WifiDetect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/WifiDetect.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/proguard-rules.pro -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/androidTest/java/com/huawei/hms/sysintegrity/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/androidTest/java/com/huawei/hms/sysintegrity/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/MainActivity.kt -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectWifiDetectAPIFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/java/com/huawei/hms/safetydetect/sample/SafetyDetectWifiDetectAPIFragment.kt -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_bg_round.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_corner_small.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_green.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_normal.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_processing.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_red.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/btn_round_yellow.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_bg.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_sysintegrity.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_wifidetect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/drawable/tab_menu_wifidetect.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/layout/fg_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/layout/fg_content.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/layout/fg_wifidetect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/layout/fg_wifidetect.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/app/src/test/java/com/huawei/safetydetectsample/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/app/src/test/java/com/huawei/safetydetectsample/ExampleUnitTest.java -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/build.gradle -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/gradle.properties -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/gradlew -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-safetydetect-demo-kotlin/HEAD/SafetyDetect-WifiDetect-Kotlin-Demo/gradlew.bat -------------------------------------------------------------------------------- /SafetyDetect-WifiDetect-Kotlin-Demo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='safety-detect-android-sample' 3 | --------------------------------------------------------------------------------