├── eclipse ├── Tasks │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hmf │ │ │ │ └── tasks │ │ │ │ └── BuildConfig.class │ │ ├── tasks.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hmf │ │ │ └── tasks │ │ │ └── BuildConfig.java │ ├── res │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── assets │ │ └── .gitignore │ ├── libs │ │ ├── .gitignore │ │ └── tasks.jar │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ └── .project ├── HMSSdkBase │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── android │ │ │ │ └── hms │ │ │ │ └── base │ │ │ │ └── BuildConfig.class │ │ ├── hmssdkbase.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── android │ │ │ └── hms │ │ │ └── base │ │ │ └── BuildConfig.java │ ├── res │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── assets │ │ └── .gitignore │ ├── libs │ │ ├── .gitignore │ │ └── hmssdk-base-4.0.3.302.jar │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ └── AndroidManifest.xml ├── HMSSdkLog │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── log │ │ │ │ └── BuildConfig.class │ │ ├── hmssdklog.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── log │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── hmssdk-log-4.0.3.302.jar │ ├── res │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── assets │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ └── .project ├── HMSSdkUI │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── base │ │ │ │ └── ui │ │ │ │ ├── R.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ └── BuildConfig.class │ │ ├── hmssdkui.jar │ │ ├── jarlist.cache │ │ ├── AndroidManifest.xml │ │ └── R.txt │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── base │ │ │ └── ui │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── hmssdk-ui-4.0.3.302.jar │ ├── res │ │ ├── .gitignore │ │ ├── values-night-v29 │ │ │ └── values-night-v29.xml │ │ ├── layout │ │ │ └── activity_endisable_service.xml │ │ ├── values-zh-rTW │ │ │ └── values-zh-rTW.xml │ │ ├── values-zh-rHK │ │ │ └── values-zh-rHK.xml │ │ └── values-zh-rCN │ │ │ └── values-zh-rCN.xml │ ├── src │ │ └── .gitignore │ ├── assets │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ └── AndroidManifest.xml ├── Update │ ├── assets │ │ ├── .gitignore │ │ └── updatesdkcas.bks │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── updatesdk │ │ │ │ ├── R.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── BuildConfig.class │ │ │ │ └── R$drawable.class │ │ ├── update.jar │ │ ├── jarlist.cache │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── upsdk_cancel_normal.png │ │ │ │ ├── upsdk_cancel_pressed_bg.png │ │ │ │ └── upsdk_btn_emphasis_normal_layer.9.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── upsdk_cancel_normal.png │ │ │ │ ├── upsdk_cancel_pressed_bg.png │ │ │ │ └── upsdk_btn_emphasis_normal_layer.9.png │ │ │ │ └── drawable-xxxhdpi-v4 │ │ │ │ ├── upsdk_cancel_normal.png │ │ │ │ ├── upsdk_cancel_pressed_bg.png │ │ │ │ └── upsdk_btn_emphasis_normal_layer.9.png │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── updatesdk │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── update.jar │ ├── res │ │ ├── .gitignore │ │ ├── drawable-xhdpi-v4 │ │ │ ├── upsdk_cancel_normal.png │ │ │ ├── upsdk_cancel_pressed_bg.png │ │ │ └── upsdk_btn_emphasis_normal_layer.9.png │ │ ├── drawable-xxhdpi-v4 │ │ │ ├── upsdk_cancel_normal.png │ │ │ ├── upsdk_cancel_pressed_bg.png │ │ │ └── upsdk_btn_emphasis_normal_layer.9.png │ │ ├── drawable-xxxhdpi-v4 │ │ │ ├── upsdk_cancel_normal.png │ │ │ ├── upsdk_cancel_pressed_bg.png │ │ │ └── upsdk_btn_emphasis_normal_layer.9.png │ │ ├── values-night-v29 │ │ │ └── values-night-v29.xml │ │ ├── drawable │ │ │ ├── upsdk_third_download_bg.xml │ │ │ ├── upsdk_cancel_bg.xml │ │ │ └── upsdk_update_all_button.xml │ │ ├── values-zh-rCN │ │ │ └── values-zh-rCN.xml │ │ ├── values-zh-rTW │ │ │ └── values-zh-rTW.xml │ │ ├── values-zh-rHK │ │ │ └── values-zh-rHK.xml │ │ ├── values-zz-rZX │ │ │ └── values-zz-rZX.xml │ │ ├── values-ko │ │ │ └── values-ko.xml │ │ └── values-ja │ │ │ └── values-ja.xml │ ├── src │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ └── AndroidManifest.xml ├── Agconnect-core │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── agconnect │ │ │ │ └── core │ │ │ │ └── BuildConfig.class │ │ ├── agconnect-core.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── agconnect │ │ │ └── core │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── agconnect-core.jar │ ├── res │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── assets │ │ └── .gitignore │ ├── proguard-project.txt │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── project.properties │ ├── AndroidManifest.xml │ └── .project ├── HMSSdkDevice │ ├── assets │ │ └── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── base │ │ │ │ └── device │ │ │ │ └── BuildConfig.class │ │ ├── hmssdkdevice.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── base │ │ │ └── device │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── hmssdk-device-4.0.3.302.jar │ ├── res │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ └── .project ├── HMSSdkStats │ ├── assets │ │ ├── .gitignore │ │ └── hianalytics_njjn │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── stats │ │ │ │ └── BuildConfig.class │ │ ├── hmssdkstats.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── stats │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── hmssdk-stats-4.0.3.302.jar │ ├── res │ │ └── .gitignore │ ├── src │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── AndroidManifest.xml │ ├── project.properties │ ├── proguard-project.txt │ └── .project ├── Network-common │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── framework │ │ │ │ └── common │ │ │ │ ├── R.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$string.class │ │ │ │ └── BuildConfig.class │ │ ├── R.txt │ │ ├── network-common.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── framework │ │ │ └── common │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── libs │ │ ├── .gitignore │ │ └── network-common.jar │ ├── res │ │ ├── .gitignore │ │ └── values │ │ │ └── values.xml │ ├── src │ │ └── .gitignore │ ├── assets │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ └── .project ├── Network-grs │ ├── assets │ │ ├── .gitignore │ │ ├── grs_sp.bks │ │ └── grs_sdk_server_config.json │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── framework │ │ │ │ └── network │ │ │ │ └── grs │ │ │ │ ├── R.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$string.class │ │ │ │ └── BuildConfig.class │ │ ├── R.txt │ │ ├── network-grs.jar │ │ ├── jarlist.cache │ │ └── AndroidManifest.xml │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── framework │ │ │ └── network │ │ │ └── grs │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── libs │ │ ├── .gitignore │ │ └── network-grs.jar │ ├── res │ │ ├── .gitignore │ │ └── values │ │ │ └── values.xml │ ├── src │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── .classpath │ ├── project.properties │ ├── .project │ └── proguard-project.txt ├── HMSSdkAvailableUpdate │ ├── assets │ │ └── .gitignore │ ├── bin │ │ ├── .gitignore │ │ ├── classes │ │ │ ├── .gitignore │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ └── hms │ │ │ │ └── base │ │ │ │ └── availableupdate │ │ │ │ ├── R.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ └── BuildConfig.class │ │ ├── hmssdkavailableupdate.jar │ │ ├── jarlist.cache │ │ ├── AndroidManifest.xml │ │ └── R.txt │ ├── gen │ │ ├── .gitignore │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── base │ │ │ └── availableupdate │ │ │ └── BuildConfig.java │ ├── libs │ │ ├── .gitignore │ │ └── hmssdk-availableupdate-4.0.3.302.jar │ ├── res │ │ ├── .gitignore │ │ ├── values │ │ │ └── values.xml │ │ └── layout │ │ │ └── hms_download_progress.xml │ ├── src │ │ └── .gitignore │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ └── AndroidManifest.xml ├── identityDemo │ ├── ic_launcher-web.png │ ├── bin │ │ ├── identitydemo.jar │ │ ├── jarlist.cache │ │ ├── classes │ │ │ └── com │ │ │ │ └── huawei │ │ │ │ ├── demo │ │ │ │ ├── util │ │ │ │ │ └── Util.class │ │ │ │ ├── log │ │ │ │ │ └── LogUtil.class │ │ │ │ └── identitydemo │ │ │ │ │ ├── R.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ ├── MainActivity$1.class │ │ │ │ │ ├── MainActivity$2.class │ │ │ │ │ └── MainActivity$3.class │ │ │ │ ├── agconnect │ │ │ │ └── core │ │ │ │ │ ├── R.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ └── R$drawable.class │ │ │ │ ├── android │ │ │ │ └── hms │ │ │ │ │ └── base │ │ │ │ │ ├── R.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ └── R$drawable.class │ │ │ │ └── hms │ │ │ │ └── framework │ │ │ │ ├── common │ │ │ │ ├── R.class │ │ │ │ └── R$string.class │ │ │ │ └── network │ │ │ │ └── grs │ │ │ │ ├── R.class │ │ │ │ └── R$string.class │ │ ├── res │ │ │ └── crunch │ │ │ │ └── drawable-xhdpi │ │ │ │ └── ic_identity_logo.png │ │ ├── dexedLibs │ │ │ ├── tasks-0ecd9eda6313fa20426baff04379ed11.jar │ │ │ ├── tasks-16162529e79c0427ffd0239c8b67a354.jar │ │ │ ├── identity-c546012ed7f0eeec632c96d7d5e36cfa.jar │ │ │ ├── hmssdkbase-c41d0312de9de38cd54a6af4315e322c.jar │ │ │ ├── network-grs-35ffc4942ec9133e7daf4daa2f82ca3e.jar │ │ │ ├── network-grs-d3bafb98d3acc385ca82b03e7ba6ca38.jar │ │ │ ├── agconnect-core-901a8f63ce60a23ec5577b5d5c507f8e.jar │ │ │ ├── agconnect-core-9c82c636668ed93b954c10b15ebfbdbd.jar │ │ │ ├── network-common-490cd4f1e19140323ca079a46eddc7fb.jar │ │ │ ├── network-common-88c764bc4fab2879f873200b8ed65f6b.jar │ │ │ ├── hmssdk-base-4.0.0.111-66d7407445ae44c3d84f4ad289f55cc2.jar │ │ │ └── hmssdk-identity-4.0.0.100-SNAPSHOT-b9f99f0c112425dec031c699bfffb67c.jar │ │ └── AndroidManifest.xml │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── res │ │ ├── drawable-xhdpi │ │ │ ├── ic_identity_logo.png │ │ │ ├── button_bg.xml │ │ │ └── arrow_right.xml │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ └── strings.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ └── layout │ │ │ └── activity_main.xml │ ├── gen │ │ └── com │ │ │ └── huawei │ │ │ ├── demo │ │ │ └── identitydemo │ │ │ │ └── BuildConfig.java │ │ │ └── hms │ │ │ └── framework │ │ │ ├── common │ │ │ └── R.java │ │ │ └── network │ │ │ └── grs │ │ │ └── R.java │ ├── .classpath │ ├── assets │ │ └── hianalytics_njjn │ ├── proguard-project.txt │ ├── .project │ ├── src │ │ └── com │ │ │ └── huawei │ │ │ └── demo │ │ │ ├── log │ │ │ └── LogUtil.java │ │ │ └── util │ │ │ └── Util.java │ ├── AndroidManifest.xml │ └── project.properties └── HMSSdkIdentity │ ├── bin │ ├── hmssdkidentity.jar │ ├── jarlist.cache │ ├── classes │ │ └── com │ │ │ └── huawei │ │ │ └── hms │ │ │ └── identity │ │ │ └── BuildConfig.class │ └── AndroidManifest.xml │ ├── libs │ └── hmssdk-identity-4.0.4.300.jar │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── gen │ └── com │ │ └── huawei │ │ └── hms │ │ └── identity │ │ └── BuildConfig.java │ ├── .classpath │ ├── AndroidManifest.xml │ ├── project.properties │ ├── proguard-project.txt │ └── .project ├── android-java └── src │ ├── settings.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── drawable │ │ │ │ └── ic_identity_logo.png │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ └── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── huawei │ │ │ └── identity │ │ │ ├── log │ │ │ └── LogUtil.java │ │ │ └── util │ │ │ └── Util.java │ ├── proguard-rules.pro │ └── build.gradle │ ├── build.gradle │ └── gradle.properties ├── android-kotlin └── src │ ├── settings.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── app │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_identity_logo.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── styles.xml │ │ │ │ ├── dimens.xml │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── com │ │ │ └── huawei │ │ │ └── identity │ │ │ └── kotlindemo │ │ │ └── util │ │ │ ├── LogUtil.kt │ │ │ └── Util.kt │ └── proguard-rules.pro │ ├── build.gradle │ └── gradle.properties └── images ├── en-us_image_0210355807.png └── en-us_image_0210355809.png /eclipse/Tasks/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Tasks/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Tasks/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Tasks/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Tasks/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Tasks/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Tasks/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/assets/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/gen/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/libs/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/res/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /eclipse/Network-common/bin/R.txt: -------------------------------------------------------------------------------- 1 | int string app_name 0x7f020000 2 | -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/R.txt: -------------------------------------------------------------------------------- 1 | int string app_name 0x7f020000 2 | -------------------------------------------------------------------------------- /android-java/src/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Identitydemo' 3 | -------------------------------------------------------------------------------- /android-kotlin/src/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "IdentityDemo" -------------------------------------------------------------------------------- /eclipse/Agconnect-core/proguard-project.txt: -------------------------------------------------------------------------------- 1 | -keep class * implements com.huawei.agconnect.core.ServiceRegistrar -------------------------------------------------------------------------------- /eclipse/Tasks/bin/tasks.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Tasks/bin/tasks.jar -------------------------------------------------------------------------------- /eclipse/Tasks/libs/tasks.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Tasks/libs/tasks.jar -------------------------------------------------------------------------------- /eclipse/Update/bin/update.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/update.jar -------------------------------------------------------------------------------- /eclipse/Update/libs/update.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/libs/update.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/hmssdkui.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/hmssdkui.jar -------------------------------------------------------------------------------- /images/en-us_image_0210355807.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/images/en-us_image_0210355807.png -------------------------------------------------------------------------------- /images/en-us_image_0210355809.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/images/en-us_image_0210355809.png -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/bin/hmssdklog.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkLog/bin/hmssdklog.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/bin/hmssdkbase.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkBase/bin/hmssdkbase.jar -------------------------------------------------------------------------------- /eclipse/Network-grs/assets/grs_sp.bks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/assets/grs_sp.bks -------------------------------------------------------------------------------- /eclipse/Update/assets/updatesdkcas.bks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/assets/updatesdkcas.bks -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/bin/hmssdkstats.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkStats/bin/hmssdkstats.jar -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/network-grs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/bin/network-grs.jar -------------------------------------------------------------------------------- /eclipse/Network-grs/libs/network-grs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/libs/network-grs.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/bin/hmssdkdevice.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkDevice/bin/hmssdkdevice.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/identitydemo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/identitydemo.jar -------------------------------------------------------------------------------- /eclipse/Agconnect-core/bin/agconnect-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Agconnect-core/bin/agconnect-core.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/bin/hmssdkidentity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkIdentity/bin/hmssdkidentity.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/libs/hmssdk-ui-4.0.3.302.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/libs/hmssdk-ui-4.0.3.302.jar -------------------------------------------------------------------------------- /eclipse/Network-common/bin/network-common.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-common/bin/network-common.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/com/huawei/demo/util/Util.java=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/libs/agconnect-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Agconnect-core/libs/agconnect-core.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/libs/hmssdk-log-4.0.3.302.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkLog/libs/hmssdk-log-4.0.3.302.jar -------------------------------------------------------------------------------- /eclipse/Network-common/libs/network-common.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-common/libs/network-common.jar -------------------------------------------------------------------------------- /android-java/src/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-java/src/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/libs/hmssdk-base-4.0.3.302.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkBase/libs/hmssdk-base-4.0.3.302.jar -------------------------------------------------------------------------------- /eclipse/Tasks/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /android-kotlin/src/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-kotlin/src/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/libs/hmssdk-device-4.0.3.302.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkDevice/libs/hmssdk-device-4.0.3.302.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/libs/hmssdk-stats-4.0.3.302.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkStats/libs/hmssdk-stats-4.0.3.302.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/Network-grs/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | restclient-grs 4 | -------------------------------------------------------------------------------- /eclipse/Update/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/Network-common/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/libs/hmssdk-identity-4.0.4.300.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkIdentity/libs/hmssdk-identity-4.0.4.300.jar -------------------------------------------------------------------------------- /eclipse/Network-common/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | restclient-common 4 | -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$id.class -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/hmssdkavailableupdate.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/hmssdkavailableupdate.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$attr.class -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xhdpi-v4/upsdk_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xhdpi-v4/upsdk_cancel_normal.png -------------------------------------------------------------------------------- /eclipse/identityDemo/res/drawable-xhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/res/drawable-xhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/drawable/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-java/src/app/src/main/res/drawable/ic_identity_logo.png -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$id.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$color.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$dimen.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$layout.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$string.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$style.class -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xxhdpi-v4/upsdk_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xxhdpi-v4/upsdk_cancel_normal.png -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xxxhdpi-v4/upsdk_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xxxhdpi-v4/upsdk_cancel_normal.png -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$attr.class -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$color.class -------------------------------------------------------------------------------- /eclipse/Tasks/bin/classes/com/huawei/hmf/tasks/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Tasks/bin/classes/com/huawei/hmf/tasks/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/Update/bin/classes/com/huawei/updatesdk/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/classes/com/huawei/updatesdk/R$drawable.class -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xhdpi-v4/upsdk_cancel_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xhdpi-v4/upsdk_cancel_pressed_bg.png -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xxhdpi-v4/upsdk_cancel_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xxhdpi-v4/upsdk_cancel_pressed_bg.png -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/util/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/util/Util.class -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/drawable-hdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-java/src/app/src/main/res/drawable-hdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/bin/classes/com/huawei/hms/log/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkLog/bin/classes/com/huawei/hms/log/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$layout.class -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/R$string.class -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xxxhdpi-v4/upsdk_cancel_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xxxhdpi-v4/upsdk_cancel_pressed_bg.png -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/log/LogUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/log/LogUtil.class -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/drawable-xhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-java/src/app/src/main/res/drawable-xhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/drawable-xxhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-java/src/app/src/main/res/drawable-xxhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/mipmap-xhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-kotlin/src/app/src/main/res/mipmap-xhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/mipmap-xxhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-kotlin/src/app/src/main/res/mipmap-xxhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/bin/classes/com/huawei/hms/stats/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkStats/bin/classes/com/huawei/hms/stats/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkUI/bin/classes/com/huawei/hms/base/ui/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$id.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R.class -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/drawable-xxxhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-java/src/app/src/main/res/drawable-xxxhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /android-kotlin/src/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | -repackageclasses 2 | 3 | -keep class androidx.** { *; } 4 | -keep public class * extends androidx.** 5 | -keep interface androidx.** { *; } 6 | -dontwarn androidx.** -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/mipmap-xxxhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/android-kotlin/src/app/src/main/res/mipmap-xxxhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/libs/hmssdk-availableupdate-4.0.3.302.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/libs/hmssdk-availableupdate-4.0.3.302.jar -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xhdpi-v4/upsdk_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xhdpi-v4/upsdk_cancel_normal.png -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xxhdpi-v4/upsdk_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xxhdpi-v4/upsdk_cancel_normal.png -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xxxhdpi-v4/upsdk_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xxxhdpi-v4/upsdk_cancel_normal.png -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$color.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$dimen.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$layout.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$string.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$style.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$id.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$id.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/hms/framework/common/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/hms/framework/common/R.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/res/crunch/drawable-xhdpi/ic_identity_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/res/crunch/drawable-xhdpi/ic_identity_logo.png -------------------------------------------------------------------------------- /eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/R.class -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xhdpi-v4/upsdk_cancel_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xhdpi-v4/upsdk_cancel_pressed_bg.png -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/agconnect/core/R$drawable.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$color.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$dimen.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$layout.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$string.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$style.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$attr.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$color.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$dimen.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$style.class -------------------------------------------------------------------------------- /eclipse/Agconnect-core/bin/classes/com/huawei/agconnect/core/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Agconnect-core/bin/classes/com/huawei/agconnect/core/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/bin/classes/com/huawei/android/hms/base/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkBase/bin/classes/com/huawei/android/hms/base/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/bin/classes/com/huawei/hms/base/device/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkDevice/bin/classes/com/huawei/hms/base/device/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/bin/classes/com/huawei/hms/identity/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkIdentity/bin/classes/com/huawei/hms/identity/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/R.class -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xxhdpi-v4/upsdk_cancel_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xxhdpi-v4/upsdk_cancel_pressed_bg.png -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xxxhdpi-v4/upsdk_cancel_pressed_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xxxhdpi-v4/upsdk_cancel_pressed_bg.png -------------------------------------------------------------------------------- /eclipse/Update/res/drawable-xxxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/res/drawable-xxxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/android/hms/base/R$drawable.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$drawable.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$layout.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/R$string.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/hms/framework/network/grs/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/hms/framework/network/grs/R.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/tasks-0ecd9eda6313fa20426baff04379ed11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/tasks-0ecd9eda6313fa20426baff04379ed11.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/tasks-16162529e79c0427ffd0239c8b67a354.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/tasks-16162529e79c0427ffd0239c8b67a354.jar -------------------------------------------------------------------------------- /eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/R$attr.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/hms/framework/common/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/hms/framework/common/R$string.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/identity-c546012ed7f0eeec632c96d7d5e36cfa.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/identity-c546012ed7f0eeec632c96d7d5e36cfa.jar -------------------------------------------------------------------------------- /eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/R$string.class -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/R$attr.class -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/R$string.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity$1.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity$2.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/demo/identitydemo/MainActivity$3.class -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/hmssdkbase-c41d0312de9de38cd54a6af4315e322c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/hmssdkbase-c41d0312de9de38cd54a6af4315e322c.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/network-grs-35ffc4942ec9133e7daf4daa2f82ca3e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/network-grs-35ffc4942ec9133e7daf4daa2f82ca3e.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/network-grs-d3bafb98d3acc385ca82b03e7ba6ca38.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/network-grs-d3bafb98d3acc385ca82b03e7ba6ca38.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R.class -------------------------------------------------------------------------------- /eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-common/bin/classes/com/huawei/hms/framework/common/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/classes/com/huawei/hms/framework/network/grs/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/classes/com/huawei/hms/framework/network/grs/R$string.class -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$id.class -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/gen/com/huawei/hms/log/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.log; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Network-grs/bin/classes/com/huawei/hms/framework/network/grs/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/Tasks/gen/com/huawei/hmf/tasks/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hmf.tasks; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png -------------------------------------------------------------------------------- /eclipse/Update/bin/res/crunch/drawable-xxxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/Update/bin/res/crunch/drawable-xxxhdpi-v4/upsdk_btn_emphasis_normal_layer.9.png -------------------------------------------------------------------------------- /eclipse/Update/gen/com/huawei/updatesdk/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.updatesdk; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/agconnect-core-901a8f63ce60a23ec5577b5d5c507f8e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/agconnect-core-901a8f63ce60a23ec5577b5d5c507f8e.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/agconnect-core-9c82c636668ed93b954c10b15ebfbdbd.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/agconnect-core-9c82c636668ed93b954c10b15ebfbdbd.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/network-common-490cd4f1e19140323ca079a46eddc7fb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/network-common-490cd4f1e19140323ca079a46eddc7fb.jar -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/network-common-88c764bc4fab2879f873200b8ed65f6b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/network-common-88c764bc4fab2879f873200b8ed65f6b.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$attr.class -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/gen/com/huawei/hms/stats/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.stats; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/Tasks/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/Update/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$color.class -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$layout.class -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/R$string.class -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/gen/com/huawei/hms/base/ui/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.base.ui; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/Network-common/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/Network-grs/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/identityDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/hmssdk-base-4.0.0.111-66d7407445ae44c3d84f4ad289f55cc2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/hmssdk-base-4.0.0.111-66d7407445ae44c3d84f4ad289f55cc2.jar -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/HMSSdkAvailableUpdate/bin/classes/com/huawei/hms/base/availableupdate/BuildConfig.class -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/gen/com/huawei/hms/identity/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.identity; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/Agconnect-core/gen/com/huawei/agconnect/core/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.agconnect.core; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/gen/com/huawei/android/hms/base/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.android.hms.base; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/gen/com/huawei/hms/base/device/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.base.device; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/identityDemo/res/drawable-xhdpi/button_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /eclipse/identityDemo/gen/com/huawei/demo/identitydemo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.demo.identitydemo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/Network-common/gen/com/huawei/hms/framework/common/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.framework.common; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/Network-grs/gen/com/huawei/hms/framework/network/grs/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.framework.network.grs; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/dexedLibs/hmssdk-identity-4.0.0.100-SNAPSHOT-b9f99f0c112425dec031c699bfffb67c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HMS-Core/hms-identity-demo/HEAD/eclipse/identityDemo/bin/dexedLibs/hmssdk-identity-4.0.0.100-SNAPSHOT-b9f99f0c112425dec031c699bfffb67c.jar -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/gen/com/huawei/hms/base/availableupdate/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.huawei.hms.base.availableupdate; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/res/values-night-v29/values-night-v29.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #262626 4 | #E6E6E6 5 | #808080 6 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-night-v29/values-night-v29.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #262626 4 | #E6E6E6 5 | #808080 6 | -------------------------------------------------------------------------------- /android-java/src/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Dec 18 12:08:21 CST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 7 | -------------------------------------------------------------------------------- /android-kotlin/src/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Sep 30 14:34:50 CST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip 7 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://play.google.com/store 4 | https://appgallery.cloud.huawei.com/app/ 5 | -------------------------------------------------------------------------------- /eclipse/Tasks/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/Tasks/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/Update/res/drawable/upsdk_third_download_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /eclipse/Network-common/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /eclipse/Update/res/drawable/upsdk_cancel_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /eclipse/Network-common/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /eclipse/Network-grs/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /eclipse/Network-grs/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /eclipse/Network-grs/assets/grs_sdk_server_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "grs_server": { 3 | "grs_base_url": [ 4 | "https://grs.dbankcloud.com", 5 | "https://grs.dbankcloud.cn", 6 | "https://grs.dbankcloud.eu", 7 | "https://grs.dbankcloud.asia" 8 | ], 9 | "grs_query_endpoint_1.0": "/grs/1.0/%1$s/router", 10 | "grs_query_endpoint_2.0": "/grs/2.0/router", 11 | "grs_query_timeout": 2 12 | } 13 | } -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /eclipse/identityDemo/gen/com/huawei/hms/framework/common/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package com.huawei.hms.framework.common; 8 | 9 | public final class R { 10 | public static final class string { 11 | public static final int app_name = 0x7f040000; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /eclipse/identityDemo/gen/com/huawei/hms/framework/network/grs/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package com.huawei.hms.framework.network.grs; 8 | 9 | public final class R { 10 | public static final class string { 11 | public static final int app_name = 0x7f040000; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /eclipse/Network-common/gen/com/huawei/hms/framework/common/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.huawei.hms.framework.common; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class string { 14 | public static int app_name=0x7f020000; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /eclipse/Network-grs/gen/com/huawei/hms/framework/network/grs/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.huawei.hms.framework.network.grs; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class string { 14 | public static int app_name=0x7f020000; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /eclipse/Tasks/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/Update/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/Network-grs/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/identityDemo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/Network-common/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16sp 4 | 14sp 5 | 16dp 6 | 16dp 7 | 24dp 8 | 24dp 9 | 4dp 10 | 8dp 11 | 16dp 12 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/assets/hianalytics_njjn: -------------------------------------------------------------------------------- 1 | 30820122300d06092a864886f70d01010105000382010f003082010a0282010100c54db230ca0e0f37b105a3cd364dd20c76d3574a781f884aeb7d7548fb33928eaafe7cf9d94b3dcb553bbb9e61821738b359da9f8cf1e9281cfbf842d1e55658d041b98ce28d81f5c7fe8b85b528f6afea350f28da6e833df875e19a6c71c59050298b28323c8910980c12a8e731e0c47dc14da076e88e25a8b7e9a7c33b27baf12e1c9de861523af15f577789389b700578670b6e37ff5e49cb4254efce57d5861aedca86e5baf1205b09cd7f742b38065559f0f70676754915acca5ad6eeaa0d68dfd5143d0a50faedb6cda3b13852705c881ba5b587ecbbb4467cbed08b6754a3f424d90c66fd3b82d48bd5c132b88ff36da668f5adc286ec8317166c70110203010001 -------------------------------------------------------------------------------- /eclipse/identityDemo/assets/hianalytics_njjn: -------------------------------------------------------------------------------- 1 | 30820122300d06092a864886f70d01010105000382010f003082010a0282010100c54db230ca0e0f37b105a3cd364dd20c76d3574a781f884aeb7d7548fb33928eaafe7cf9d94b3dcb553bbb9e61821738b359da9f8cf1e9281cfbf842d1e55658d041b98ce28d81f5c7fe8b85b528f6afea350f28da6e833df875e19a6c71c59050298b28323c8910980c12a8e731e0c47dc14da076e88e25a8b7e9a7c33b27baf12e1c9de861523af15f577789389b700578670b6e37ff5e49cb4254efce57d5861aedca86e5baf1205b09cd7f742b38065559f0f70676754915acca5ad6eeaa0d68dfd5143d0a50faedb6cda3b13852705c881ba5b587ecbbb4467cbed08b6754a3f424d90c66fd3b82d48bd5c132b88ff36da668f5adc286ec8317166c70110203010001 -------------------------------------------------------------------------------- /eclipse/Tasks/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/Update/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/Network-grs/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/Network-common/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-26 15 | android.library=true 16 | android.library.reference.1=../HMSSdkUI 17 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/drawable-xhdpi/arrow_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 13 | 17 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 14 | 15 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 14 | 15 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 地址管理 4 | 呈现用户地址信息 5 | 获取华为用户地址 6 | Demo介绍\n\n\n该Demo模拟第三方应用调用华为用户身份服务API获取用户地址信息。\n\n用户点击获取华为用户地址按钮,进入地址选择界面后,选择具体地址,点击确认将在界面显示出用户姓名、电话号码和地址信息。 7 | Demo介绍 8 | 用戶取消地址分享 9 | 网络不可用,请检查网络状态 10 | 当前地区不支持Identity服务 11 | 儿童账号不支持Identity服务 12 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 地址管理 4 | 呈现用户地址信息 5 | 获取华为用户地址 6 | Demo介绍(版本 1.0.200114)\n\n该Demo模拟第三方应用调用华为用户身份服务API获取用户地址信息。\n\n用户点击获取华为用户地址按钮,进入地址选择界面后,选择具体地址,点击确认将在界面显示出用户姓名、电话号码和地址信息。 7 | Demo介绍 8 | 用戶取消地址分享 9 | 网络不可用,请检查网络状态 10 | 当前地区不支持Identity服务 11 | 儿童账号不支持Identity服务 12 | -------------------------------------------------------------------------------- /android-java/src/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | google() 6 | jcenter() 7 | maven {url 'http://developer.huawei.com/repo/'} 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:3.5.1' 11 | classpath 'com.huawei.agconnect:agcp:1.0.0.300' 12 | // NOTE: Do not place your application dependencies here; they belong 13 | // in the individual module build.gradle files 14 | } 15 | } 16 | 17 | allprojects { 18 | repositories { 19 | google() 20 | jcenter() 21 | 22 | maven {url 'http://developer.huawei.com/repo/'} 23 | } 24 | } 25 | 26 | task clean(type: Delete) { 27 | delete rootProject.buildDir 28 | } 29 | -------------------------------------------------------------------------------- /android-java/src/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/res/layout/activity_endisable_service.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /eclipse/Tasks/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/Update/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/identityDemo/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /eclipse/Network-common/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | 23 | -keep class com.huawei.hms.framework.common.** { *; } -------------------------------------------------------------------------------- /android-kotlin/src/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | ext.kotlin_version = "1.3.72" 4 | repositories { 5 | google() 6 | jcenter() 7 | maven {url 'http://developer.huawei.com/repo/'} 8 | } 9 | dependencies { 10 | classpath "com.android.tools.build:gradle:4.0.1" 11 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 12 | classpath 'com.huawei.agconnect:agcp:1.0.0.300' 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | google() 21 | jcenter() 22 | 23 | maven {url 'http://developer.huawei.com/repo/'} 24 | } 25 | } 26 | 27 | task clean(type: Delete) { 28 | delete rootProject.buildDir 29 | } -------------------------------------------------------------------------------- /eclipse/Tasks/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tasks 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/Update/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Update 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkUI 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkBase 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkLog/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkLog 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkStats/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkStats 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/Network-grs/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Network-grs 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkDevice/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkDevice 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/identityDemo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | identityDemo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/Agconnect-core/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Agconnect-core 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 21 | 22 | 23 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /eclipse/HMSSdkIdentity/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkIdentity 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/Network-common/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Network-common 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /eclipse/HMSSdkBase/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 18 | 21 | 22 | 23 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | HMSSdkAvailableUpdate 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/java/com/huawei/identity/kotlindemo/util/LogUtil.kt: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. 3 | *

4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | *

8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | *

10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.huawei.identity.kotlindemo.util 18 | 19 | import android.util.Log 20 | 21 | object LogUtil { 22 | private const val TAG = "identity_demo" 23 | 24 | fun i(tag: String, message: String): Unit { 25 | Log.i(TAG, "$tag:$message"); 26 | } 27 | 28 | fun e(tag: String, message: String): Unit { 29 | Log.e(TAG, "$tag:$message") 30 | } 31 | } -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 地址管理 4 | 呈现用户地址信息 5 | 获取华为用户地址 6 | Demo介绍\n\n\n该Demo模拟第三方应用调用华为用户身份服务API获取用户地址信息。\n\n用户点击获取华为用户地址按钮,进入地址选择界面后,选择具体地址,点击确认将在界面显示出用户姓名、电话号码和地址信息。 7 | Demo介绍 8 | 用戶取消地址分享 9 | 网络不可用,请检查网络状态 10 | 当前地区不支持Identity服务 11 | 儿童账号不支持Identity服务 12 | 查询时间间隔过短,请稍后重试。 13 | 确定删除吗? 14 | 提示 15 | 确定 16 | 取消 17 | 地址列表 18 | -------------------------------------------------------------------------------- /eclipse/identityDemo/src/com/huawei/demo/log/LogUtil.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. 3 | *

4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | *

8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | *

10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.huawei.demo.log; 18 | 19 | import android.util.Log; 20 | 21 | public class LogUtil { 22 | private static final String LOG_TAG = "identity_demo"; 23 | 24 | public static void i(String tag, String msg) { 25 | Log.i(LOG_TAG, tag + " : " + msg); 26 | } 27 | 28 | public static void e(String tag, String msg) { 29 | Log.e(LOG_TAG, tag + " : " + msg); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /android-java/src/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app's APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Automatically convert third-party libraries to use AndroidX 19 | android.enableJetifier=true 20 | 21 | -------------------------------------------------------------------------------- /eclipse/identityDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /eclipse/identityDemo/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/java/com/huawei/identity/log/LogUtil.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. 3 | *

4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | *

8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | *

10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.huawei.identity.log; 18 | 19 | import android.util.Log; 20 | 21 | public class LogUtil { 22 | private static final String LOG_TAG = "identity_demo"; 23 | 24 | public static void i(String tag, String msg) { 25 | Log.i(LOG_TAG, tag + " : " + msg); 26 | } 27 | 28 | public static void e(String tag, String msg) { 29 | Log.e(LOG_TAG, tag + " : " + msg); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Address 3 | Show user address 4 | Get Huawei User Address 5 | Demo introduction\n\n\nThis demo simulates a third-party application calling the Huawei User Identity Service API to obtain user address information.\n\nThe user clicks the Get Huawei User Address button to enter the address selection interface. selects a specific address. After clicking OK, the user name, phone number, and address information are displayed on the interface. 6 | Demo usage introduction 7 | User cancels address sharing 8 | The network is not available. Please check the network status 9 | The Identity service is not supported in the current locale 10 | Children account do not support Identity service 11 | 12 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 17 | 20 | 21 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 17 | 20 | 21 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /eclipse/identityDemo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-28 15 | android.library=true 16 | android.library.reference.1=..\\HMSSdkIdentity 17 | android.library.reference.2=..\\Agconnect-core 18 | android.library.reference.3=../HMSSdkBase 19 | android.library.reference.4=../HMSSdkAvailableUpdate 20 | android.library.reference.10=../Network-grs 21 | android.library.reference.11=../Tasks 22 | android.library.reference.12=../Update 23 | android.library.reference.9=../Network-common 24 | android.library.reference.5=../HMSSdkDevice 25 | android.library.reference.6=../HMSSdkLog 26 | android.library.reference.7=../HMSSdkStats 27 | android.library.reference.8=../HMSSdkUI 28 | -------------------------------------------------------------------------------- /android-kotlin/src/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx2048m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | # AndroidX package structure to make it clearer which packages are bundled with the 15 | # Android operating system, and which are packaged with your app"s APK 16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 17 | android.useAndroidX=true 18 | # Automatically convert third-party libraries to use AndroidX 19 | android.enableJetifier=true 20 | # Kotlin code style for this project: "official" or "obsolete": 21 | kotlin.code.style=official -------------------------------------------------------------------------------- /eclipse/Update/res/drawable/upsdk_update_all_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Shipping Address 4 | Show user address 5 | Get Huawei User Address 6 | Demo introduction(Version 1.0.200114)\n\nThis demo simulates a third-party application calling the Huawei User Identity Service API to obtain user address information.\n\nThe user clicks the Get Huawei User Address button to enter the address selection interface. selects a specific address. After clicking OK, the user name, phone number, and address information are displayed on the interface. 7 | Demo usage introduction 8 | User cancels address sharing 9 | The network is not available. Please check the network status 10 | The Identity service is not supported in the current locale 11 | Children account do not support Identity service 12 | 13 | 14 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/java/com/huawei/identity/kotlindemo/util/Util.kt: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. 3 | *

4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | *

8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | *

10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.huawei.identity.kotlindemo.util 18 | 19 | import android.content.Context 20 | import android.net.ConnectivityManager 21 | 22 | object Util { 23 | fun isNetworkAvailable(context: Context?): Boolean { 24 | val connectivityManager = 25 | (context?.getSystemService(Context.CONNECTIVITY_SERVICE)) as ConnectivityManager? 26 | val networkInfo = connectivityManager?.activeNetworkInfo 27 | return (networkInfo?.isAvailable) ?: false 28 | } 29 | } -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/bin/R.txt: -------------------------------------------------------------------------------- 1 | int color emui_color_gray_1 0x7f040000 2 | int color emui_color_gray_10 0x7f040001 3 | int color emui_color_gray_7 0x7f040002 4 | int id enable_service_text 0x7f050000 5 | int layout activity_endisable_service 0x7f020000 6 | int string hms_abort 0x7f030000 7 | int string hms_abort_message 0x7f030001 8 | int string hms_bindfaildlg_message 0x7f030002 9 | int string hms_bindfaildlg_title 0x7f030018 10 | int string hms_cancel 0x7f030003 11 | int string hms_check_failure 0x7f030004 12 | int string hms_check_no_update 0x7f030005 13 | int string hms_checking 0x7f030006 14 | int string hms_confirm 0x7f030007 15 | int string hms_download_failure 0x7f030008 16 | int string hms_download_no_space 0x7f030009 17 | int string hms_download_retry 0x7f03000a 18 | int string hms_downloading 0x7f03000b 19 | int string hms_downloading_loading 0x7f03000c 20 | int string hms_downloading_new 0x7f03000d 21 | int string hms_gamebox_name 0x7f03000e 22 | int string hms_install 0x7f03000f 23 | int string hms_install_message 0x7f030010 24 | int string hms_retry 0x7f030011 25 | int string hms_update 0x7f030012 26 | int string hms_update_continue 0x7f030013 27 | int string hms_update_message 0x7f030014 28 | int string hms_update_message_new 0x7f030015 29 | int string hms_update_nettype 0x7f030016 30 | int string hms_update_title 0x7f030017 31 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /eclipse/Network-grs/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -keep class com.huawei.hms.framework.network.grs.GrsApi { *; } 23 | -keep class com.huawei.hms.framework.network.grs.GrsBaseInfo { *; } 24 | -keep public interface com.huawei.hms.framework.network.grs.GrsBaseInfo$CountryCodeSource {*;} 25 | -keep class com.huawei.hms.framework.network.grs.IQueryUrlCallBack { *; } 26 | -keep class com.huawei.hms.framework.network.grs.IQueryUrlsCallBack { *; } 27 | -keep class com.huawei.hms.framework.network.grs.GrsClient { *; } 28 | -keep class com.huawei.hms.framework.network.grs.local.model.CountryCodeBean { *; } 29 | -keep class com.huawei.hms.framework.network.grs.GrsManager { *; } 30 | -keep class com.huawei.hms.framework.network.grs.GrsConfig { *; } 31 | -------------------------------------------------------------------------------- /eclipse/identityDemo/src/com/huawei/demo/util/Util.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. 3 | *

4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | *

8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | *

10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.huawei.demo.util; 18 | 19 | import android.content.Context; 20 | import android.net.ConnectivityManager; 21 | import android.net.NetworkInfo; 22 | 23 | 24 | public class Util { 25 | public static boolean isNetworkAvailable(Context context) { 26 | if (context != null) { 27 | ConnectivityManager connectivityManager = (ConnectivityManager) context 28 | .getSystemService(Context.CONNECTIVITY_SERVICE); 29 | if (connectivityManager == null) { 30 | return false; 31 | } 32 | NetworkInfo mNetworkInfo = connectivityManager.getActiveNetworkInfo(); 33 | if (mNetworkInfo != null) { 34 | return mNetworkInfo.isAvailable(); 35 | } 36 | } 37 | return false; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | IdentityDemo 3 | Show user address 4 | Get Huawei User Address 5 | Demo introduction\n\n\nThis demo simulates a third-party application calling the Huawei User Identity Service API to obtain user address information.\n\nThe user clicks the Get Huawei User Address button to enter the address selection interface. selects a specific address. After clicking OK, the user name, phone number, and address information are displayed on the interface. 6 | Demo usage introduction 7 | User cancels address sharing 8 | The network is not available. Please check the network status 9 | The Identity service is not supported in the current locale 10 | Children account do not support Identity service 11 | Query interval is too short, please try again later. 12 | Are you sure you want to delete it? 13 | Tip 14 | OK 15 | Cancel 16 | Address List 17 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/bin/R.txt: -------------------------------------------------------------------------------- 1 | int color emui_color_gray_1 0x7f040000 2 | int color emui_color_gray_10 0x7f040001 3 | int color emui_color_gray_7 0x7f040002 4 | int id download_info_progress 0x7f050004 5 | int id enable_service_text 0x7f050000 6 | int id hms_message_text 0x7f050001 7 | int id hms_progress_bar 0x7f050003 8 | int id hms_progress_text 0x7f050002 9 | int layout activity_endisable_service 0x7f020000 10 | int layout hms_download_progress 0x7f020001 11 | int string hms_abort 0x7f030000 12 | int string hms_abort_message 0x7f030001 13 | int string hms_base_google 0x7f030019 14 | int string hms_base_vmall 0x7f03001a 15 | int string hms_bindfaildlg_message 0x7f030002 16 | int string hms_bindfaildlg_title 0x7f030018 17 | int string hms_cancel 0x7f030003 18 | int string hms_check_failure 0x7f030004 19 | int string hms_check_no_update 0x7f030005 20 | int string hms_checking 0x7f030006 21 | int string hms_confirm 0x7f030007 22 | int string hms_download_failure 0x7f030008 23 | int string hms_download_no_space 0x7f030009 24 | int string hms_download_retry 0x7f03000a 25 | int string hms_downloading 0x7f03000b 26 | int string hms_downloading_loading 0x7f03000c 27 | int string hms_downloading_new 0x7f03000d 28 | int string hms_gamebox_name 0x7f03000e 29 | int string hms_install 0x7f03000f 30 | int string hms_install_message 0x7f030010 31 | int string hms_retry 0x7f030011 32 | int string hms_update 0x7f030012 33 | int string hms_update_continue 0x7f030013 34 | int string hms_update_message 0x7f030014 35 | int string hms_update_message_new 0x7f030015 36 | int string hms_update_nettype 0x7f030016 37 | int string hms_update_title 0x7f030017 38 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/java/com/huawei/identity/util/Util.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. 3 | *

4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | *

8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | *

10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.huawei.identity.util; 18 | 19 | import android.content.Context; 20 | import android.net.ConnectivityManager; 21 | import android.net.NetworkInfo; 22 | 23 | 24 | public class Util { 25 | /** 26 | * Check if there is a network connection 27 | * 28 | * @param context android application context 29 | * @return boolean 30 | */ 31 | public static boolean isNetworkAvailable(Context context) { 32 | if (context != null) { 33 | ConnectivityManager connectivityManager = (ConnectivityManager) context 34 | .getSystemService(Context.CONNECTIVITY_SERVICE); 35 | if (connectivityManager == null) { 36 | return false; 37 | } 38 | NetworkInfo mNetworkInfo = connectivityManager.getActiveNetworkInfo(); 39 | if (mNetworkInfo != null) { 40 | return mNetworkInfo.isAvailable(); 41 | } 42 | } 43 | return false; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /eclipse/Update/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 26 | 29 | 30 | 35 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /eclipse/Update/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 26 | 29 | 30 | 35 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /eclipse/identityDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 15 | 16 | 21 | 26 | 27 | 31 | 32 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /android-kotlin/src/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 22 | 23 | 33 | 34 | 43 | 44 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-zh-rCN/values-zh-rCN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "正在下载华为应用市场" 4 | "安装" 5 | "大小" 6 | "版本" 7 | "取消" 8 | "正在检查更新..." 9 | "有可用更新,快去升级吧。" 10 | "无法连接服务器,请稍后重试" 11 | "详情" 12 | "无法获取信息,请稍后重试" 13 | "需要使用华为官方应用市场才能升级,是否现在安装?" 14 | "网络未连接,请检查网络设置" 15 | "应用" 16 | "以后再说" 17 | "退出应用" 18 | "立即更新" 19 | "发现新版本" 20 | "%1$s MB" 21 | "是否取消安装?" 22 | "安装失败" 23 | "确认" 24 | "已是最新版本" 25 | "正在更新" 26 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "正在下載華為應用程式商店" 4 | "安裝" 5 | "大小" 6 | "版本" 7 | "取消" 8 | "正在檢查更新…" 9 | "有可用更新,快去升級吧。" 10 | "無法連線伺服器,請稍後重試" 11 | "詳情" 12 | "無法取得資訊,請稍後重試" 13 | "需要安裝華為應用程式商店才能更新。是否現在安裝?" 14 | "沒有網際網路連線。請檢查網路設定。" 15 | "應用程式" 16 | "以後再說" 17 | "結束應用程式" 18 | "立即更新" 19 | "發現新版本" 20 | "%1$s MB" 21 | "取消安裝?" 22 | "安裝失敗" 23 | "是" 24 | "已是最新版本" 25 | "正在更新" 26 | -------------------------------------------------------------------------------- /android-java/src/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'com.huawei.agconnect' 3 | 4 | android { 5 | signingConfigs { 6 | debug { 7 | storeFile file('xxx.xxx') 8 | keyAlias 'xxx' 9 | keyPassword 'xxx' 10 | storePassword 'xxx' 11 | } 12 | } 13 | compileSdkVersion 29 14 | buildToolsVersion "29.0.2" 15 | defaultConfig { 16 | applicationId "com.huawei.identity.javademo" 17 | minSdkVersion 19 18 | targetSdkVersion 29 19 | versionCode 100 20 | versionName "1.0.0" 21 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 22 | } 23 | buildTypes { 24 | release { 25 | minifyEnabled false 26 | // proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 27 | signingConfig signingConfigs.debug 28 | } 29 | debug { 30 | minifyEnabled false 31 | signingConfig signingConfigs.debug 32 | } 33 | } 34 | lintOptions { 35 | abortOnError false 36 | } 37 | 38 | applicationVariants.all { 39 | def buildType = it.buildType.name 40 | it.outputs.each { 41 | if (buildType == "release") { 42 | it.outputFileName = "identitydemo_${versionName}_product_release.apk" 43 | } else { 44 | it.outputFileName = "identitydemo_${versionName}_product_debug.apk" 45 | } 46 | } 47 | } 48 | } 49 | 50 | 51 | dependencies { 52 | implementation fileTree(dir: 'libs', include: ['*.jar']) 53 | implementation 'com.huawei.hms:identity:5.3.0.300' 54 | implementation 'androidx.appcompat:appcompat:1.0.2' 55 | implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 56 | testImplementation 'junit:junit:4.12' 57 | androidTestImplementation 'androidx.test.ext:junit:1.1.0' 58 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' 59 | } 60 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-zh-rHK/values-zh-rHK.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "正在下載華為應用程式市場" 4 | "安裝" 5 | "大小" 6 | "版本" 7 | "取消" 8 | "正在檢查更新…" 9 | "有可用的更新,快去更新。" 10 | "無法連線伺服器,請稍後重試" 11 | "詳細資訊" 12 | "無法獲取資訊,請稍後重試" 13 | "需安裝華為應用程式市場以進行更新。立即安裝?" 14 | "沒有互聯網連接,請檢查您的網絡設定。" 15 | "應用程式" 16 | "稍後" 17 | "退出應用程式" 18 | "立即更新" 19 | "發現新版本" 20 | "%1$s MB" 21 | "取消安裝?" 22 | "無法安裝" 23 | "確認" 24 | "已是最新版" 25 | "更新中" 26 | -------------------------------------------------------------------------------- /android-java/src/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /eclipse/HMSSdkAvailableUpdate/res/layout/hms_download_progress.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 19 | 20 | 30 | 31 | 38 | 39 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/res/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "停止" 4 | "停止下載?" 5 | "%1$s 無法正常使用華為行動服務。請嘗試打開「手機管理員」或「設定」,開啟 %2$s 的所有權限(「自啟動」、「關聯啟動」等),並重試。" 6 | "取消" 7 | "無法檢查更新。" 8 | "已是最新版本" 9 | "正在偵測新版本…" 10 | "確定" 11 | "無法下載華為行動服務套件" 12 | "可用空間不足。無法完成下載。" 13 | "下載失敗。是否重試?" 14 | "正在下載華為行動服務 | 進度:%d%%" 15 | "正在下載" 16 | "正在下載華為行動服務" 17 | "遊戲中心" 18 | "安裝" 19 | "不得安裝華為行動服務來使用此功能。要安裝嗎?" 20 | "重試" 21 | "更新" 22 | "繼續下載" 23 | "更新到最新的華為行動服務以使用本功能。是否立即更新?" 24 | "該服務需安裝以下應用程式的最新版本才能使用:\n\n·%1$s" 25 | "目前為非 Wi-Fi 網路。是否繼續下載?" 26 | "華為行動服務" 27 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/res/values-zh-rHK/values-zh-rHK.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "停止" 4 | "停止下載?" 5 | "%1$s 無法正常使用華為流動服務。請嘗試開啟「手機總管」或「設定」,開啟%2$s的所有權限(包含「自動啟動」、「第二次啟動」等),並重試。" 6 | "取消" 7 | "檢查更新失敗。" 8 | "已是最新版本" 9 | "正在檢查更新…" 10 | "確定" 11 | "下載「華為流動服務」程式套件失敗。" 12 | "空間不足,無法完成下載。" 13 | "下載失敗,再試一次?" 14 | "正在下載「華為流動服務」| 進度:%d%%" 15 | "載入中" 16 | "正在載入華為流動服務" 17 | "遊戲中心" 18 | "安裝" 19 | "必須安全華為流動服務才可使用此功能。是否安裝?" 20 | "重試" 21 | "更新" 22 | "繼續下載" 23 | "更新至最新的「華為流動服務」版本即可使用此功能,立即更新?" 24 | "該服務需安裝以下應用程式的最新版本才能使用:\n\n·%1$s" 25 | "目前未連線 Wi-Fi 網絡。繼續下載?" 26 | "華為流動服務" 27 | -------------------------------------------------------------------------------- /eclipse/HMSSdkUI/res/values-zh-rCN/values-zh-rCN.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "终止" 4 | "是否终止下载?" 5 | "%1$s无法正常使用华为移动服务。请尝试打开“手机管家”或“设置”,开启%2$s的所有权限(“自启动”、“关联启动”等),并重试。" 6 | "取消" 7 | "检查华为移动服务更新失败。" 8 | "已是最新版本" 9 | "正在检测新版本..." 10 | "知道了" 11 | "下载华为移动服务安装包失败。" 12 | "剩余空间不足,无法下载。" 13 | "下载华为移动服务失败。是否重试?" 14 | "正在下载华为移动服务 | 已完成:%d%%" 15 | "正在加载" 16 | "正在加载华为移动服务" 17 | "游戏中心" 18 | "安装" 19 | "您尚未安装华为移动服务,安装之后才可用此功能。是否安装?" 20 | "重试" 21 | "更新" 22 | "继续下载" 23 | "华为移动服务版本太旧,更新到最新版本才可用此功能。是否更新?" 24 | "该服务需安装以下应用的最新版本才能使用:\n\n·%1$s" 25 | "当前为非 Wi-Fi 网络。是否继续下载?" 26 | "华为移动服务" 27 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-zz-rZX/values-zz-rZX.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | [CS_325747]_Downloading AppGallery 4 | [CS_326955]_Install 5 | [CS_325750]_Size 6 | [CS_325751]_Version 7 | [CS_325749]_Cancel 8 | [CS_325741]_Checking for updates… 9 | [CS_325748]_Update available. Please download and install the latest version. 10 | [CS_445445]_Unable to connect to server. Please try again later. 11 | [CS_325745]_Details 12 | [CS_445449]_Unable to retrieve information. Please try again later. 13 | [CS_326956]_Install AppGallery to update. Install now? 14 | [CS_445450]_No Internet connection. Please check your network settings. 15 | [CS_355478]_App 16 | [CS_325742]_Later 17 | [CS_355477]_Exit 18 | [CS_325752]_Update 19 | [CS_325743]_New version 20 | [CS_427606]_%1$s MB 21 | [CS_445446]_Cancel the installation? 22 | [CS_445447]_Installation failed. 23 | [CS_445448]_Yes 24 | [CS_325744]_Your version is up to date. 25 | [CS_325740]_Updating 26 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-ko/values-ko.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "AppGallery 다운로드 중" 4 | "설치" 5 | "크기" 6 | "버전" 7 | "취소" 8 | "업데이트 확인 중…" 9 | "새로운 업데이트가 있습니다. 최신 버전을 다운로드하여 설치하세요." 10 | "서버에 연결할 수 없습니다. 나중에 다시 시도하세요." 11 | "상세사항" 12 | "정보를 검색할 수 없습니다. 나중에 다시 시도하세요." 13 | "업데이트하려면 AppGallery를 설치하세요. 지금 설치할까요?" 14 | "인터넷이 연결되지 않았습니다. 네트워크 설정을 확인해 주세요." 15 | "앱" 16 | "나중에" 17 | "나가기" 18 | "업데이트" 19 | "새로운 버전" 20 | "%1$sMB" 21 | "설치를 취소할까요?" 22 | "설치에 실패했습니다." 23 | "예" 24 | "최신 버전입니다." 25 | "업데이트 중" 26 | -------------------------------------------------------------------------------- /eclipse/Update/res/values-ja/values-ja.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | "AppGalleryをダウンロード中" 4 | "インストール" 5 | "サイズ" 6 | "バージョン" 7 | "キャンセル" 8 | "更新を確認中…" 9 | "利用可能な更新があります。最新版をダウンロードしてインストールしてください。" 10 | "サーバーに接続できませんでした。後で再試行してください。" 11 | "詳細" 12 | "情報を取得できません。後で再試行してください。" 13 | "AppGalleryをインストールして更新してください。今すぐインストールしますか?" 14 | "インターネットに接続されていません。ネットワーク設定を確認してください。" 15 | "アプリ" 16 | "後で" 17 | "終了" 18 | "更新" 19 | "新しいバージョン" 20 | "%1$s MB" 21 | "インストールを中止しますか?" 22 | "インストールに失敗しました。" 23 | "はい" 24 | "ご利用のバージョンは最新です" 25 | "更新中" 26 | --------------------------------------------------------------------------------