├── .github └── workflows │ ├── codestyle.yml │ ├── gradle.yml │ └── unit-tests.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASING.md ├── docs ├── releasing │ ├── 01-setup.md │ ├── 02-prepare-release-commit.md │ ├── 03-publish-to-local-repository.md │ ├── 07-publish-a-release-build-to-gradle-plugin-portal.md │ └── 08-prepare-alpha-version-commit.md └── screenshots │ ├── cian_logo.png │ ├── huawei-release-phase-isssue-1.png │ ├── huawei_appgallery_icon.png │ ├── logo.png │ └── logo_cian_huawei.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── plugin ├── build.gradle.kts ├── config │ ├── bintray-publish.gradle │ ├── check-jdk.gradle │ ├── detekt │ │ ├── detekt-baseline.xml │ │ └── detekt-config.yml │ ├── gradle-portal.gradle │ └── publish-methods.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-rules.pro └── src │ ├── main │ ├── kotlin │ │ └── ru │ │ │ └── cian │ │ │ └── huawei │ │ │ └── publish │ │ │ ├── HuaweiPublishConfig.kt │ │ │ ├── HuaweiPublishExtension.kt │ │ │ ├── HuaweiPublishPlugin.kt │ │ │ ├── HuaweiPublishTask.kt │ │ │ ├── models │ │ │ ├── Credential.kt │ │ │ ├── HuaweiHttpResponseException.kt │ │ │ ├── request │ │ │ │ ├── AccessTokenRequest.kt │ │ │ │ ├── FileInfoRequest.kt │ │ │ │ ├── PhasedReleaseRequest.kt │ │ │ │ ├── UpdateAppFileInfoRequest.kt │ │ │ │ └── UpdateReleaseNotesRequest.kt │ │ │ └── response │ │ │ │ ├── AccessTokenResponse.kt │ │ │ │ ├── AppIdResponse.kt │ │ │ │ ├── AppInfo.kt │ │ │ │ ├── FileInfo.kt │ │ │ │ ├── FileServerOriResultResponse.kt │ │ │ │ ├── Result.kt │ │ │ │ ├── Ret.kt │ │ │ │ ├── SubmitResponse.kt │ │ │ │ ├── UpdateAppBasicInfoResponse.kt │ │ │ │ ├── UpdateAppFileInfoResponse.kt │ │ │ │ ├── UpdateReleaseNotesResponse.kt │ │ │ │ ├── UploadFileRsp.kt │ │ │ │ └── UploadUrlResponse.kt │ │ │ ├── service │ │ │ ├── HttpClientHelper.kt │ │ │ ├── HttpMethod.kt │ │ │ ├── HuaweiService.kt │ │ │ ├── HuaweiServiceImpl.kt │ │ │ └── mock │ │ │ │ ├── MockServerWrapper.kt │ │ │ │ ├── MockServerWrapperImpl.kt │ │ │ │ └── MockServerWrapperStub.kt │ │ │ └── utils │ │ │ ├── BuildFileProvider.kt │ │ │ ├── BuildFileProviderDeprecated.kt │ │ │ ├── BuildFileProviderNew.kt │ │ │ ├── ConfigProvider.kt │ │ │ ├── Consts.kt │ │ │ ├── CredentialHelper.kt │ │ │ ├── FileWrapper.kt │ │ │ ├── GradleProperty.kt │ │ │ ├── KotlinExtensions.kt │ │ │ ├── Logger.kt │ │ │ └── ServerPollingExecutor.kt │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ └── ru.cian.huawei-publish.properties │ └── test │ └── kotlin │ └── ru │ └── cian │ └── huawei │ └── publish │ └── utils │ ├── AssertkExtension.kt │ ├── ConfigProviderTest.kt │ ├── HtmlTagsTest.kt │ └── KotlinExtensionsTest.kt ├── sample-aar ├── build.gradle ├── huawei-credentials-1.json └── src │ └── main │ └── res │ └── values │ └── strings.xml ├── sample-groovy ├── app-basic-info.json ├── build.gradle ├── huawei-credentials-1.json ├── huawei-credentials-2.json ├── proguard-rules.pro ├── release-notes-en.txt ├── release-notes-ru.txt └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── demoDebug │ └── res │ │ └── values │ │ └── strings.xml │ ├── demoRelease │ └── res │ │ └── values │ │ └── strings.xml │ ├── fullDebug │ └── res │ │ └── values │ │ └── strings.xml │ ├── fullRelease │ └── res │ │ └── values │ │ └── strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── ru │ │ │ └── cian │ │ │ └── huawei │ │ │ └── sample2 │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── release │ └── res │ └── values │ └── strings.xml ├── sample-kotlin ├── app-basic-info.json ├── build.gradle.kts ├── huawei-credentials.json ├── proguard-rules.pro ├── release-notes-en.txt ├── release-notes-ru.txt └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── ru │ │ │ └── cian │ │ │ └── huawei │ │ │ └── sample1 │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── release │ └── res │ └── values │ └── strings.xml └── settings.gradle.kts /.github/workflows/codestyle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/.github/workflows/codestyle.yml -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/RELEASING.md -------------------------------------------------------------------------------- /docs/releasing/01-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/releasing/01-setup.md -------------------------------------------------------------------------------- /docs/releasing/02-prepare-release-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/releasing/02-prepare-release-commit.md -------------------------------------------------------------------------------- /docs/releasing/03-publish-to-local-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/releasing/03-publish-to-local-repository.md -------------------------------------------------------------------------------- /docs/releasing/07-publish-a-release-build-to-gradle-plugin-portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/releasing/07-publish-a-release-build-to-gradle-plugin-portal.md -------------------------------------------------------------------------------- /docs/releasing/08-prepare-alpha-version-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/releasing/08-prepare-alpha-version-commit.md -------------------------------------------------------------------------------- /docs/screenshots/cian_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/screenshots/cian_logo.png -------------------------------------------------------------------------------- /docs/screenshots/huawei-release-phase-isssue-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/screenshots/huawei-release-phase-isssue-1.png -------------------------------------------------------------------------------- /docs/screenshots/huawei_appgallery_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/screenshots/huawei_appgallery_icon.png -------------------------------------------------------------------------------- /docs/screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/screenshots/logo.png -------------------------------------------------------------------------------- /docs/screenshots/logo_cian_huawei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/docs/screenshots/logo_cian_huawei.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/build.gradle.kts -------------------------------------------------------------------------------- /plugin/config/bintray-publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/config/bintray-publish.gradle -------------------------------------------------------------------------------- /plugin/config/check-jdk.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/config/check-jdk.gradle -------------------------------------------------------------------------------- /plugin/config/detekt/detekt-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/config/detekt/detekt-baseline.xml -------------------------------------------------------------------------------- /plugin/config/detekt/detekt-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/config/detekt/detekt-config.yml -------------------------------------------------------------------------------- /plugin/config/gradle-portal.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/config/gradle-portal.gradle -------------------------------------------------------------------------------- /plugin/config/publish-methods.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/config/publish-methods.gradle -------------------------------------------------------------------------------- /plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/gradle.properties -------------------------------------------------------------------------------- /plugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/gradlew -------------------------------------------------------------------------------- /plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/gradlew.bat -------------------------------------------------------------------------------- /plugin/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/proguard-rules.pro -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishConfig.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishExtension.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishPlugin.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/HuaweiPublishTask.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/Credential.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/Credential.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/HuaweiHttpResponseException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/HuaweiHttpResponseException.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/AccessTokenRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/AccessTokenRequest.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/FileInfoRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/FileInfoRequest.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/PhasedReleaseRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/PhasedReleaseRequest.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/UpdateAppFileInfoRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/UpdateAppFileInfoRequest.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/UpdateReleaseNotesRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/request/UpdateReleaseNotesRequest.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/AccessTokenResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/AccessTokenResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/AppIdResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/AppIdResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/AppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/AppInfo.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/FileInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/FileInfo.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/FileServerOriResultResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/FileServerOriResultResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/Result.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/Result.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/Ret.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/Ret.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/SubmitResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/SubmitResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UpdateAppBasicInfoResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UpdateAppBasicInfoResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UpdateAppFileInfoResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UpdateAppFileInfoResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UpdateReleaseNotesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UpdateReleaseNotesResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UploadFileRsp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UploadFileRsp.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UploadUrlResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/models/response/UploadUrlResponse.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/HttpClientHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/HttpClientHelper.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/HttpMethod.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/HttpMethod.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/HuaweiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/HuaweiService.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/HuaweiServiceImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/HuaweiServiceImpl.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/mock/MockServerWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/mock/MockServerWrapper.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/mock/MockServerWrapperImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/mock/MockServerWrapperImpl.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/service/mock/MockServerWrapperStub.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/service/mock/MockServerWrapperStub.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/BuildFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/BuildFileProvider.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/BuildFileProviderDeprecated.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/BuildFileProviderDeprecated.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/BuildFileProviderNew.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/BuildFileProviderNew.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/ConfigProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/ConfigProvider.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/Consts.kt: -------------------------------------------------------------------------------- 1 | package ru.cian.huawei.publish.utils 2 | 3 | const val RELEASE_DATE_TIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ssZZ" 4 | -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/CredentialHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/CredentialHelper.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/FileWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/FileWrapper.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/GradleProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/GradleProperty.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/KotlinExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/KotlinExtensions.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/Logger.kt -------------------------------------------------------------------------------- /plugin/src/main/kotlin/ru/cian/huawei/publish/utils/ServerPollingExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/kotlin/ru/cian/huawei/publish/utils/ServerPollingExecutor.kt -------------------------------------------------------------------------------- /plugin/src/main/resources/META-INF/gradle-plugins/ru.cian.huawei-publish.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/main/resources/META-INF/gradle-plugins/ru.cian.huawei-publish.properties -------------------------------------------------------------------------------- /plugin/src/test/kotlin/ru/cian/huawei/publish/utils/AssertkExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/test/kotlin/ru/cian/huawei/publish/utils/AssertkExtension.kt -------------------------------------------------------------------------------- /plugin/src/test/kotlin/ru/cian/huawei/publish/utils/ConfigProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/test/kotlin/ru/cian/huawei/publish/utils/ConfigProviderTest.kt -------------------------------------------------------------------------------- /plugin/src/test/kotlin/ru/cian/huawei/publish/utils/HtmlTagsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/test/kotlin/ru/cian/huawei/publish/utils/HtmlTagsTest.kt -------------------------------------------------------------------------------- /plugin/src/test/kotlin/ru/cian/huawei/publish/utils/KotlinExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/plugin/src/test/kotlin/ru/cian/huawei/publish/utils/KotlinExtensionsTest.kt -------------------------------------------------------------------------------- /sample-aar/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-aar/build.gradle -------------------------------------------------------------------------------- /sample-aar/huawei-credentials-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-aar/huawei-credentials-1.json -------------------------------------------------------------------------------- /sample-aar/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-aar/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/app-basic-info.json: -------------------------------------------------------------------------------- 1 | {"publishCountry": "BY,MD,RU,AM,AZ,GE,KZ,KG,MN,TJ,TM,UZ"} -------------------------------------------------------------------------------- /sample-groovy/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/build.gradle -------------------------------------------------------------------------------- /sample-groovy/huawei-credentials-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/huawei-credentials-1.json -------------------------------------------------------------------------------- /sample-groovy/huawei-credentials-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/huawei-credentials-2.json -------------------------------------------------------------------------------- /sample-groovy/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/proguard-rules.pro -------------------------------------------------------------------------------- /sample-groovy/release-notes-en.txt: -------------------------------------------------------------------------------- 1 | Some Release Notes -------------------------------------------------------------------------------- /sample-groovy/release-notes-ru.txt: -------------------------------------------------------------------------------- 1 | Какие-то Release Notes -------------------------------------------------------------------------------- /sample-groovy/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/src/demoDebug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/demoDebug/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/src/demoRelease/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/demoRelease/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/src/fullDebug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/fullDebug/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/src/fullRelease/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/fullRelease/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/java/ru/cian/huawei/sample2/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/java/ru/cian/huawei/sample2/MainActivity.kt -------------------------------------------------------------------------------- /sample-groovy/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-groovy/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample-groovy/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample-groovy/src/release/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-groovy/src/release/res/values/strings.xml -------------------------------------------------------------------------------- /sample-kotlin/app-basic-info.json: -------------------------------------------------------------------------------- 1 | {"publishCountry": "BY,MD,RU,AM,AZ,GE,KZ,KG,MN,TJ,TM,UZ"} -------------------------------------------------------------------------------- /sample-kotlin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/build.gradle.kts -------------------------------------------------------------------------------- /sample-kotlin/huawei-credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/huawei-credentials.json -------------------------------------------------------------------------------- /sample-kotlin/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/proguard-rules.pro -------------------------------------------------------------------------------- /sample-kotlin/release-notes-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/release-notes-en.txt -------------------------------------------------------------------------------- /sample-kotlin/release-notes-ru.txt: -------------------------------------------------------------------------------- 1 | Какие-то Release Notes -------------------------------------------------------------------------------- /sample-kotlin/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/java/ru/cian/huawei/sample1/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/java/ru/cian/huawei/sample1/MainActivity.kt -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample-kotlin/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample-kotlin/src/release/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/sample-kotlin/src/release/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cianru/huawei-appgallery-publish-gradle-plugin/HEAD/settings.gradle.kts --------------------------------------------------------------------------------