Closed VictorJava closed 4 years ago
Does it work if you try again?
Thanks for reply. I have tried a few times and each time I received this error. Ok, I will try today again.
Oh, if it happens more than once, then it's not a transient issue.
Are you applying the plugin multiple times in the same Gradle project? If so, are the app's package names different? Do you have multiple build types? Maybe you're trying to upload the same app twice? Are you running builds in parallel? For example, are other team members using Gradle with the GPP credentials? Also, please share a log of the build with the --info
flag. (It's going to be very big, so I'd recommend piping it to a file.)
Hi, sorry for the late answer.
Are you applying the plugin multiple times in the same Gradle project?
No. But I run a few tasks like ./gradlew -p .. publishSocialNetworkVpnNormalGoogleReleaseApk publishSocialNetworkVpnFreeGoogleReleaseApk -PplayTrack=beta
If so, are the app's package names different?
Sure. All apps ids are different.
Do you have multiple build types?
Yes, I have a few(2) flavors. And try to deploy both of them.
Maybe you're trying to upload the same app twice?
Not sure. I call different tasks to deploy publishSocialNetworkVpnNormalGoogleReleaseApk and publishSocialNetworkVpnFreeGoogleReleaseApk
Are you running builds in parallel
no
GPP credentials
do not implement in this project
Also, please share a log of the build with the --info flag. (It's going to be very big, so I'd recommend piping it to a file.)
Sorry, but I can provide it only without info. I tried a few times with -info but my jenkins do not able to show all log... Maybe there is some limitation or something else. log_without_info.txt
I need to say that I do the same for another similar project and it works. I guess that problem with configuration in google store... but I cant understand what is the main problem.
Thanks for your help.
Unfortunately, I can't figure out what's happening to the edit ID without the --info
flag, but I can tell you that GPP thinks you only have one app. I can see that you have com.socialnetworkvpn
, but what should the other package be and how are you configuring it? As for the --info
stuff, can you try running this and then get the logs.txt
file on GitHub somehow?
../gradlew -p .. publishSocialNetworkVpnNormalGoogleReleaseApk publishSocialNetworkVpnFreeGoogleReleaseApk -PplayTrack=beta --info > logs.txt
cat logs.txt # Maybe this won't be too big and you'll be able to copy it?
Great news! I did as you suggested to me on the local machine and got a file. Could you please check it? Take it to account that the file is as an archive. Because of the size limitation of the attached file I put it in the zip. logs.txt.zip
Ohhhhhhhhh, I get it. For whatever reason, GPP isn't registering your second app.
If I had to guess, you have the different package names defined in different manifests for each flavor, but you also have the applicationId
property set in your build.gradle
. Remove that line and you should be good. If that doesn't solve it, please share your build.gradle and how your manifest(s) are organized.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hi, sorry for the late answer. I working with this app only on the weekend. Unfortunately, applicationId linked all gradle and I can`t change it so easy. If you have a chance could you please review my gradle and manifests files? I attached app manifest that works as well and manifest that has a problem with deploying. Thanks for your help. Archive.zip
I think you have to specify an applicationId
for each product flavor you want to publish (normal
is missing one for example).
Hmm, oook, thanks for hint. I will change it and test it again. Also I will reply about my result. Thanks.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
I have checked all flavors and it seems that applicationId set correct. Feel free to check my screens. Both apps have different applicationId. There are com.socialnetworkvpn and com.socialnetworkvpn.androidstandaloneclient. Unfortunately, Google still rejects my second app(with suffix free). Maybe you have some clues about this? Could you please help me because it really confused about this behavior? app that has problems with deploying
app that is ok
To be blunt, the build.gradle
file is a bit of a mess. Since this isn't a GPP bug, I'm going to close this issue, but feel free to continue the back-and-forth.
I think the best way for you to debug it is to get this code to work:
afterEvaluate {
android.applicationVariants.all { variant ->
println(variant.name) // This will print 'socialNetworkVpnNormalGoogle' at some point
println(variant.applicationId) // This ID needs to be what you expect.
println("----------")
}
}
If you get that to work, any android plugin will work as expected.
To be blunt, the
build.gradle
file is a bit of a mess. Since this isn't a GPP bug, I'm going to close this issue, but feel free to continue the back-and-forth.I think the best way for you to debug it is to get this code to work:
afterEvaluate { android.applicationVariants.all { variant -> println(variant.name) // This will print 'socialNetworkVpnNormalGoogle' at some point println(variant.applicationId) // This ID needs to be what you expect. println("----------") } }
Thanks for your reply. I did as you suggested(-- changed to <>)and it looks that aplicationIds are correct. This is print of my releases apps
vpnShieldNormalAmazonRelease com.vpnshieldapp.androidclient <> vpnShieldNormalSamsungRelease com.vpnshieldapp.samsungclient <> vpnShieldNormalGoogleRelease com.vpnshieldapp <> vpnShieldFreeGoogleRelease com.vpnshieldapp.androidstandaloneclient <> socialNetworkVpnNormalAmazonRelease com.socialnetworkvpn.amazon <> socialNetworkVpnNormalSamsungRelease com.socialnetworkvpn.samsungclient <> socialNetworkVpnNormalGoogleRelease com.socialnetworkvpn <> socialNetworkVpnFreeGoogleRelease com.socialnetworkvpn.androidstandaloneclient <> Feel free to check my screen
As you can see that packages are different and it is indeed what I expect. Could you please help me? There is no duplication with appId. Have you any ideas how to fix deploying?
Huh, that's a weird one. It makes no sense since all we're doing is using variant.applicationId
. Maybe the tasks are getting messed up somehow, so can you share the output of ./gradlew app:tasks --all
?
Thanks for reply. I did ./gradlew app:tasks --all
It looks like required tasks are exist
publishApkSocialNetworkVpnFreeGoogleRelease
publishApkSocialNetworkVpnNormalGoogleRelease
This is all of print. mergeVpnShieldFreeGoogleStagingApiJniLibFolders mergeVpnShieldFreeGoogleStagingApiNativeLibs mergeVpnShieldFreeGoogleStagingApiResources mergeVpnShieldFreeGoogleStagingApiShaders mergeVpnShieldFreeGoogleTrueDebugAssets mergeVpnShieldFreeGoogleTrueDebugGeneratedProguardFiles mergeVpnShieldFreeGoogleTrueDebugJavaResource mergeVpnShieldFreeGoogleTrueDebugJniLibFolders mergeVpnShieldFreeGoogleTrueDebugNativeLibs mergeVpnShieldFreeGoogleTrueDebugResources mergeVpnShieldFreeGoogleTrueDebugShaders mergeVpnShieldMockedGoogleDebugAndroidTestAssets mergeVpnShieldMockedGoogleDebugAndroidTestGeneratedProguardFiles mergeVpnShieldMockedGoogleDebugAndroidTestJavaResource mergeVpnShieldMockedGoogleDebugAndroidTestJniLibFolders mergeVpnShieldMockedGoogleDebugAndroidTestNativeLibs mergeVpnShieldMockedGoogleDebugAndroidTestResources mergeVpnShieldMockedGoogleDebugAndroidTestShaders mergeVpnShieldMockedGoogleDebugAssets mergeVpnShieldMockedGoogleDebugGeneratedProguardFiles mergeVpnShieldMockedGoogleDebugJavaResource mergeVpnShieldMockedGoogleDebugJniLibFolders mergeVpnShieldMockedGoogleDebugNativeLibs mergeVpnShieldMockedGoogleDebugResources mergeVpnShieldMockedGoogleDebugShaders mergeVpnShieldMockedGoogleStagingApiAssets mergeVpnShieldMockedGoogleStagingApiGeneratedProguardFiles mergeVpnShieldMockedGoogleStagingApiJavaResource mergeVpnShieldMockedGoogleStagingApiJniLibFolders mergeVpnShieldMockedGoogleStagingApiNativeLibs mergeVpnShieldMockedGoogleStagingApiResources mergeVpnShieldMockedGoogleStagingApiShaders mergeVpnShieldMockedGoogleTrueDebugAssets mergeVpnShieldMockedGoogleTrueDebugGeneratedProguardFiles mergeVpnShieldMockedGoogleTrueDebugJavaResource mergeVpnShieldMockedGoogleTrueDebugJniLibFolders mergeVpnShieldMockedGoogleTrueDebugNativeLibs mergeVpnShieldMockedGoogleTrueDebugResources mergeVpnShieldMockedGoogleTrueDebugShaders mergeVpnShieldNormalAmazonDebugAndroidTestAssets mergeVpnShieldNormalAmazonDebugAndroidTestGeneratedProguardFiles mergeVpnShieldNormalAmazonDebugAndroidTestJavaResource mergeVpnShieldNormalAmazonDebugAndroidTestJniLibFolders mergeVpnShieldNormalAmazonDebugAndroidTestNativeLibs mergeVpnShieldNormalAmazonDebugAndroidTestResources mergeVpnShieldNormalAmazonDebugAndroidTestShaders mergeVpnShieldNormalAmazonDebugAssets mergeVpnShieldNormalAmazonDebugGeneratedProguardFiles mergeVpnShieldNormalAmazonDebugJavaResource mergeVpnShieldNormalAmazonDebugJniLibFolders mergeVpnShieldNormalAmazonDebugNativeLibs mergeVpnShieldNormalAmazonDebugResources mergeVpnShieldNormalAmazonDebugShaders mergeVpnShieldNormalAmazonReleaseAssets mergeVpnShieldNormalAmazonReleaseGeneratedProguardFiles mergeVpnShieldNormalAmazonReleaseJavaResource mergeVpnShieldNormalAmazonReleaseJniLibFolders mergeVpnShieldNormalAmazonReleaseNativeLibs mergeVpnShieldNormalAmazonReleaseResources mergeVpnShieldNormalAmazonReleaseShaders mergeVpnShieldNormalAmazonStagingApiAssets mergeVpnShieldNormalAmazonStagingApiGeneratedProguardFiles mergeVpnShieldNormalAmazonStagingApiJavaResource mergeVpnShieldNormalAmazonStagingApiJniLibFolders mergeVpnShieldNormalAmazonStagingApiNativeLibs mergeVpnShieldNormalAmazonStagingApiResources mergeVpnShieldNormalAmazonStagingApiShaders mergeVpnShieldNormalAmazonTrueDebugAssets mergeVpnShieldNormalAmazonTrueDebugGeneratedProguardFiles mergeVpnShieldNormalAmazonTrueDebugJavaResource mergeVpnShieldNormalAmazonTrueDebugJniLibFolders mergeVpnShieldNormalAmazonTrueDebugNativeLibs mergeVpnShieldNormalAmazonTrueDebugResources mergeVpnShieldNormalAmazonTrueDebugShaders mergeVpnShieldNormalGoogleDebugAndroidTestAssets mergeVpnShieldNormalGoogleDebugAndroidTestGeneratedProguardFiles mergeVpnShieldNormalGoogleDebugAndroidTestJavaResource mergeVpnShieldNormalGoogleDebugAndroidTestJniLibFolders mergeVpnShieldNormalGoogleDebugAndroidTestNativeLibs mergeVpnShieldNormalGoogleDebugAndroidTestResources mergeVpnShieldNormalGoogleDebugAndroidTestShaders mergeVpnShieldNormalGoogleDebugAssets mergeVpnShieldNormalGoogleDebugGeneratedProguardFiles mergeVpnShieldNormalGoogleDebugJavaResource mergeVpnShieldNormalGoogleDebugJniLibFolders mergeVpnShieldNormalGoogleDebugNativeLibs mergeVpnShieldNormalGoogleDebugResources mergeVpnShieldNormalGoogleDebugShaders mergeVpnShieldNormalGoogleReleaseAssets mergeVpnShieldNormalGoogleReleaseGeneratedProguardFiles mergeVpnShieldNormalGoogleReleaseJavaResource mergeVpnShieldNormalGoogleReleaseJniLibFolders mergeVpnShieldNormalGoogleReleaseNativeLibs mergeVpnShieldNormalGoogleReleaseResources mergeVpnShieldNormalGoogleReleaseShaders mergeVpnShieldNormalGoogleStagingApiAssets mergeVpnShieldNormalGoogleStagingApiGeneratedProguardFiles mergeVpnShieldNormalGoogleStagingApiJavaResource mergeVpnShieldNormalGoogleStagingApiJniLibFolders mergeVpnShieldNormalGoogleStagingApiNativeLibs mergeVpnShieldNormalGoogleStagingApiResources mergeVpnShieldNormalGoogleStagingApiShaders mergeVpnShieldNormalGoogleTrueDebugAssets mergeVpnShieldNormalGoogleTrueDebugGeneratedProguardFiles mergeVpnShieldNormalGoogleTrueDebugJavaResource mergeVpnShieldNormalGoogleTrueDebugJniLibFolders mergeVpnShieldNormalGoogleTrueDebugNativeLibs mergeVpnShieldNormalGoogleTrueDebugResources mergeVpnShieldNormalGoogleTrueDebugShaders mergeVpnShieldNormalSamsungDebugAndroidTestAssets mergeVpnShieldNormalSamsungDebugAndroidTestGeneratedProguardFiles mergeVpnShieldNormalSamsungDebugAndroidTestJavaResource mergeVpnShieldNormalSamsungDebugAndroidTestJniLibFolders mergeVpnShieldNormalSamsungDebugAndroidTestNativeLibs mergeVpnShieldNormalSamsungDebugAndroidTestResources mergeVpnShieldNormalSamsungDebugAndroidTestShaders mergeVpnShieldNormalSamsungDebugAssets mergeVpnShieldNormalSamsungDebugGeneratedProguardFiles mergeVpnShieldNormalSamsungDebugJavaResource mergeVpnShieldNormalSamsungDebugJniLibFolders mergeVpnShieldNormalSamsungDebugNativeLibs mergeVpnShieldNormalSamsungDebugResources mergeVpnShieldNormalSamsungDebugShaders mergeVpnShieldNormalSamsungReleaseAssets mergeVpnShieldNormalSamsungReleaseGeneratedProguardFiles mergeVpnShieldNormalSamsungReleaseJavaResource mergeVpnShieldNormalSamsungReleaseJniLibFolders mergeVpnShieldNormalSamsungReleaseNativeLibs mergeVpnShieldNormalSamsungReleaseResources mergeVpnShieldNormalSamsungReleaseShaders mergeVpnShieldNormalSamsungStagingApiAssets mergeVpnShieldNormalSamsungStagingApiGeneratedProguardFiles mergeVpnShieldNormalSamsungStagingApiJavaResource mergeVpnShieldNormalSamsungStagingApiJniLibFolders mergeVpnShieldNormalSamsungStagingApiNativeLibs mergeVpnShieldNormalSamsungStagingApiResources mergeVpnShieldNormalSamsungStagingApiShaders mergeVpnShieldNormalSamsungTrueDebugAssets mergeVpnShieldNormalSamsungTrueDebugGeneratedProguardFiles mergeVpnShieldNormalSamsungTrueDebugJavaResource mergeVpnShieldNormalSamsungTrueDebugJniLibFolders mergeVpnShieldNormalSamsungTrueDebugNativeLibs mergeVpnShieldNormalSamsungTrueDebugResources mergeVpnShieldNormalSamsungTrueDebugShaders multiDexListSocialNetworkVpnFreeGoogleDebug multiDexListSocialNetworkVpnFreeGoogleDebugAndroidTest multiDexListSocialNetworkVpnFreeGoogleTrueDebug multiDexListSocialNetworkVpnNormalAmazonDebug multiDexListSocialNetworkVpnNormalAmazonDebugAndroidTest multiDexListSocialNetworkVpnNormalAmazonTrueDebug multiDexListSocialNetworkVpnNormalGoogleDebug multiDexListSocialNetworkVpnNormalGoogleDebugAndroidTest multiDexListSocialNetworkVpnNormalGoogleTrueDebug multiDexListSocialNetworkVpnNormalSamsungDebug multiDexListSocialNetworkVpnNormalSamsungDebugAndroidTest multiDexListSocialNetworkVpnNormalSamsungTrueDebug multiDexListVpnShieldFreeGoogleDebug multiDexListVpnShieldFreeGoogleDebugAndroidTest multiDexListVpnShieldFreeGoogleStagingApi multiDexListVpnShieldFreeGoogleTrueDebug multiDexListVpnShieldMockedGoogleDebug multiDexListVpnShieldMockedGoogleDebugAndroidTest multiDexListVpnShieldMockedGoogleStagingApi multiDexListVpnShieldMockedGoogleTrueDebug multiDexListVpnShieldNormalAmazonDebug multiDexListVpnShieldNormalAmazonDebugAndroidTest multiDexListVpnShieldNormalAmazonStagingApi multiDexListVpnShieldNormalAmazonTrueDebug multiDexListVpnShieldNormalGoogleDebug multiDexListVpnShieldNormalGoogleDebugAndroidTest multiDexListVpnShieldNormalGoogleStagingApi multiDexListVpnShieldNormalGoogleTrueDebug multiDexListVpnShieldNormalSamsungDebug multiDexListVpnShieldNormalSamsungDebugAndroidTest multiDexListVpnShieldNormalSamsungStagingApi multiDexListVpnShieldNormalSamsungTrueDebug packageSocialNetworkVpnFreeGoogleDebug packageSocialNetworkVpnFreeGoogleDebugAndroidTest packageSocialNetworkVpnFreeGoogleDebugBundle packageSocialNetworkVpnFreeGoogleDebugUniversalApk packageSocialNetworkVpnFreeGoogleRelease packageSocialNetworkVpnFreeGoogleReleaseBundle packageSocialNetworkVpnFreeGoogleReleaseUniversalApk packageSocialNetworkVpnFreeGoogleTrueDebug packageSocialNetworkVpnFreeGoogleTrueDebugBundle packageSocialNetworkVpnFreeGoogleTrueDebugUniversalApk packageSocialNetworkVpnNormalAmazonDebug packageSocialNetworkVpnNormalAmazonDebugAndroidTest packageSocialNetworkVpnNormalAmazonDebugBundle packageSocialNetworkVpnNormalAmazonDebugUniversalApk packageSocialNetworkVpnNormalAmazonRelease packageSocialNetworkVpnNormalAmazonReleaseBundle packageSocialNetworkVpnNormalAmazonReleaseUniversalApk packageSocialNetworkVpnNormalAmazonTrueDebug packageSocialNetworkVpnNormalAmazonTrueDebugBundle packageSocialNetworkVpnNormalAmazonTrueDebugUniversalApk packageSocialNetworkVpnNormalGoogleDebug packageSocialNetworkVpnNormalGoogleDebugAndroidTest packageSocialNetworkVpnNormalGoogleDebugBundle packageSocialNetworkVpnNormalGoogleDebugUniversalApk packageSocialNetworkVpnNormalGoogleRelease packageSocialNetworkVpnNormalGoogleReleaseBundle packageSocialNetworkVpnNormalGoogleReleaseUniversalApk packageSocialNetworkVpnNormalGoogleTrueDebug packageSocialNetworkVpnNormalGoogleTrueDebugBundle packageSocialNetworkVpnNormalGoogleTrueDebugUniversalApk packageSocialNetworkVpnNormalSamsungDebug packageSocialNetworkVpnNormalSamsungDebugAndroidTest packageSocialNetworkVpnNormalSamsungDebugBundle packageSocialNetworkVpnNormalSamsungDebugUniversalApk packageSocialNetworkVpnNormalSamsungRelease packageSocialNetworkVpnNormalSamsungReleaseBundle packageSocialNetworkVpnNormalSamsungReleaseUniversalApk packageSocialNetworkVpnNormalSamsungTrueDebug packageSocialNetworkVpnNormalSamsungTrueDebugBundle packageSocialNetworkVpnNormalSamsungTrueDebugUniversalApk packageVpnShieldFreeGoogleDebug packageVpnShieldFreeGoogleDebugAndroidTest packageVpnShieldFreeGoogleDebugBundle packageVpnShieldFreeGoogleDebugUniversalApk packageVpnShieldFreeGoogleRelease packageVpnShieldFreeGoogleReleaseBundle packageVpnShieldFreeGoogleReleaseUniversalApk packageVpnShieldFreeGoogleStagingApi packageVpnShieldFreeGoogleStagingApiBundle packageVpnShieldFreeGoogleStagingApiUniversalApk packageVpnShieldFreeGoogleTrueDebug packageVpnShieldFreeGoogleTrueDebugBundle packageVpnShieldFreeGoogleTrueDebugUniversalApk packageVpnShieldMockedGoogleDebug packageVpnShieldMockedGoogleDebugAndroidTest packageVpnShieldMockedGoogleDebugBundle packageVpnShieldMockedGoogleDebugUniversalApk packageVpnShieldMockedGoogleStagingApi packageVpnShieldMockedGoogleStagingApiBundle packageVpnShieldMockedGoogleStagingApiUniversalApk packageVpnShieldMockedGoogleTrueDebug packageVpnShieldMockedGoogleTrueDebugBundle packageVpnShieldMockedGoogleTrueDebugUniversalApk packageVpnShieldNormalAmazonDebug packageVpnShieldNormalAmazonDebugAndroidTest packageVpnShieldNormalAmazonDebugBundle packageVpnShieldNormalAmazonDebugUniversalApk packageVpnShieldNormalAmazonRelease packageVpnShieldNormalAmazonReleaseBundle packageVpnShieldNormalAmazonReleaseUniversalApk packageVpnShieldNormalAmazonStagingApi packageVpnShieldNormalAmazonStagingApiBundle packageVpnShieldNormalAmazonStagingApiUniversalApk packageVpnShieldNormalAmazonTrueDebug packageVpnShieldNormalAmazonTrueDebugBundle packageVpnShieldNormalAmazonTrueDebugUniversalApk packageVpnShieldNormalGoogleDebug packageVpnShieldNormalGoogleDebugAndroidTest packageVpnShieldNormalGoogleDebugBundle packageVpnShieldNormalGoogleDebugUniversalApk packageVpnShieldNormalGoogleRelease packageVpnShieldNormalGoogleReleaseBundle packageVpnShieldNormalGoogleReleaseUniversalApk packageVpnShieldNormalGoogleStagingApi packageVpnShieldNormalGoogleStagingApiBundle packageVpnShieldNormalGoogleStagingApiUniversalApk packageVpnShieldNormalGoogleTrueDebug packageVpnShieldNormalGoogleTrueDebugBundle packageVpnShieldNormalGoogleTrueDebugUniversalApk packageVpnShieldNormalSamsungDebug packageVpnShieldNormalSamsungDebugAndroidTest packageVpnShieldNormalSamsungDebugBundle packageVpnShieldNormalSamsungDebugUniversalApk packageVpnShieldNormalSamsungRelease packageVpnShieldNormalSamsungReleaseBundle packageVpnShieldNormalSamsungReleaseUniversalApk packageVpnShieldNormalSamsungStagingApi packageVpnShieldNormalSamsungStagingApiBundle packageVpnShieldNormalSamsungStagingApiUniversalApk packageVpnShieldNormalSamsungTrueDebug packageVpnShieldNormalSamsungTrueDebugBundle packageVpnShieldNormalSamsungTrueDebugUniversalApk preBuild prepareKotlinBuildScriptModel prepareLintJar prepareLintJarForPublish preSocialNetworkVpnFreeGoogleDebugAndroidTestBuild preSocialNetworkVpnFreeGoogleDebugBuild preSocialNetworkVpnFreeGoogleDebugUnitTestBuild preSocialNetworkVpnFreeGoogleReleaseBuild preSocialNetworkVpnFreeGoogleReleaseUnitTestBuild preSocialNetworkVpnFreeGoogleTrueDebugBuild preSocialNetworkVpnFreeGoogleTrueDebugUnitTestBuild preSocialNetworkVpnNormalAmazonDebugAndroidTestBuild preSocialNetworkVpnNormalAmazonDebugBuild preSocialNetworkVpnNormalAmazonDebugUnitTestBuild preSocialNetworkVpnNormalAmazonReleaseBuild preSocialNetworkVpnNormalAmazonReleaseUnitTestBuild preSocialNetworkVpnNormalAmazonTrueDebugBuild preSocialNetworkVpnNormalAmazonTrueDebugUnitTestBuild preSocialNetworkVpnNormalGoogleDebugAndroidTestBuild preSocialNetworkVpnNormalGoogleDebugBuild preSocialNetworkVpnNormalGoogleDebugUnitTestBuild preSocialNetworkVpnNormalGoogleReleaseBuild preSocialNetworkVpnNormalGoogleReleaseUnitTestBuild preSocialNetworkVpnNormalGoogleTrueDebugBuild preSocialNetworkVpnNormalGoogleTrueDebugUnitTestBuild preSocialNetworkVpnNormalSamsungDebugAndroidTestBuild preSocialNetworkVpnNormalSamsungDebugBuild preSocialNetworkVpnNormalSamsungDebugUnitTestBuild preSocialNetworkVpnNormalSamsungReleaseBuild preSocialNetworkVpnNormalSamsungReleaseUnitTestBuild preSocialNetworkVpnNormalSamsungTrueDebugBuild preSocialNetworkVpnNormalSamsungTrueDebugUnitTestBuild preVpnShieldFreeGoogleDebugAndroidTestBuild preVpnShieldFreeGoogleDebugBuild preVpnShieldFreeGoogleDebugUnitTestBuild preVpnShieldFreeGoogleReleaseBuild preVpnShieldFreeGoogleReleaseUnitTestBuild preVpnShieldFreeGoogleStagingApiBuild preVpnShieldFreeGoogleStagingApiUnitTestBuild preVpnShieldFreeGoogleTrueDebugBuild preVpnShieldFreeGoogleTrueDebugUnitTestBuild preVpnShieldMockedGoogleDebugAndroidTestBuild preVpnShieldMockedGoogleDebugBuild preVpnShieldMockedGoogleDebugUnitTestBuild preVpnShieldMockedGoogleStagingApiBuild preVpnShieldMockedGoogleStagingApiUnitTestBuild preVpnShieldMockedGoogleTrueDebugBuild preVpnShieldMockedGoogleTrueDebugUnitTestBuild preVpnShieldNormalAmazonDebugAndroidTestBuild preVpnShieldNormalAmazonDebugBuild preVpnShieldNormalAmazonDebugUnitTestBuild preVpnShieldNormalAmazonReleaseBuild preVpnShieldNormalAmazonReleaseUnitTestBuild preVpnShieldNormalAmazonStagingApiBuild preVpnShieldNormalAmazonStagingApiUnitTestBuild preVpnShieldNormalAmazonTrueDebugBuild preVpnShieldNormalAmazonTrueDebugUnitTestBuild preVpnShieldNormalGoogleDebugAndroidTestBuild preVpnShieldNormalGoogleDebugBuild preVpnShieldNormalGoogleDebugUnitTestBuild preVpnShieldNormalGoogleReleaseBuild preVpnShieldNormalGoogleReleaseUnitTestBuild preVpnShieldNormalGoogleStagingApiBuild preVpnShieldNormalGoogleStagingApiUnitTestBuild preVpnShieldNormalGoogleTrueDebugBuild preVpnShieldNormalGoogleTrueDebugUnitTestBuild preVpnShieldNormalSamsungDebugAndroidTestBuild preVpnShieldNormalSamsungDebugBuild preVpnShieldNormalSamsungDebugUnitTestBuild preVpnShieldNormalSamsungReleaseBuild preVpnShieldNormalSamsungReleaseUnitTestBuild preVpnShieldNormalSamsungStagingApiBuild preVpnShieldNormalSamsungStagingApiUnitTestBuild preVpnShieldNormalSamsungTrueDebugBuild preVpnShieldNormalSamsungTrueDebugUnitTestBuild processSocialNetworkVpnFreeGoogleDebugAndroidTestJavaRes processSocialNetworkVpnFreeGoogleDebugAndroidTestManifest processSocialNetworkVpnFreeGoogleDebugAndroidTestResources processSocialNetworkVpnFreeGoogleDebugGoogleServices processSocialNetworkVpnFreeGoogleDebugJavaRes processSocialNetworkVpnFreeGoogleDebugManifest processSocialNetworkVpnFreeGoogleDebugResources processSocialNetworkVpnFreeGoogleDebugUnitTestJavaRes processSocialNetworkVpnFreeGoogleReleaseGoogleServices processSocialNetworkVpnFreeGoogleReleaseJavaRes processSocialNetworkVpnFreeGoogleReleaseManifest processSocialNetworkVpnFreeGoogleReleaseMetadata processSocialNetworkVpnFreeGoogleReleaseResources processSocialNetworkVpnFreeGoogleReleaseUnitTestJavaRes processSocialNetworkVpnFreeGoogleTrueDebugGoogleServices processSocialNetworkVpnFreeGoogleTrueDebugJavaRes processSocialNetworkVpnFreeGoogleTrueDebugManifest processSocialNetworkVpnFreeGoogleTrueDebugResources processSocialNetworkVpnFreeGoogleTrueDebugUnitTestJavaRes processSocialNetworkVpnNormalAmazonDebugAndroidTestJavaRes processSocialNetworkVpnNormalAmazonDebugAndroidTestManifest processSocialNetworkVpnNormalAmazonDebugAndroidTestResources processSocialNetworkVpnNormalAmazonDebugGoogleServices processSocialNetworkVpnNormalAmazonDebugJavaRes processSocialNetworkVpnNormalAmazonDebugManifest processSocialNetworkVpnNormalAmazonDebugResources processSocialNetworkVpnNormalAmazonDebugUnitTestJavaRes processSocialNetworkVpnNormalAmazonReleaseGoogleServices processSocialNetworkVpnNormalAmazonReleaseJavaRes processSocialNetworkVpnNormalAmazonReleaseManifest processSocialNetworkVpnNormalAmazonReleaseMetadata processSocialNetworkVpnNormalAmazonReleaseResources processSocialNetworkVpnNormalAmazonReleaseUnitTestJavaRes processSocialNetworkVpnNormalAmazonTrueDebugGoogleServices processSocialNetworkVpnNormalAmazonTrueDebugJavaRes processSocialNetworkVpnNormalAmazonTrueDebugManifest processSocialNetworkVpnNormalAmazonTrueDebugResources processSocialNetworkVpnNormalAmazonTrueDebugUnitTestJavaRes processSocialNetworkVpnNormalGoogleDebugAndroidTestJavaRes processSocialNetworkVpnNormalGoogleDebugAndroidTestManifest processSocialNetworkVpnNormalGoogleDebugAndroidTestResources processSocialNetworkVpnNormalGoogleDebugGoogleServices processSocialNetworkVpnNormalGoogleDebugJavaRes processSocialNetworkVpnNormalGoogleDebugManifest processSocialNetworkVpnNormalGoogleDebugResources processSocialNetworkVpnNormalGoogleDebugUnitTestJavaRes processSocialNetworkVpnNormalGoogleReleaseGoogleServices processSocialNetworkVpnNormalGoogleReleaseJavaRes processSocialNetworkVpnNormalGoogleReleaseManifest processSocialNetworkVpnNormalGoogleReleaseMetadata processSocialNetworkVpnNormalGoogleReleaseResources processSocialNetworkVpnNormalGoogleReleaseUnitTestJavaRes processSocialNetworkVpnNormalGoogleTrueDebugGoogleServices processSocialNetworkVpnNormalGoogleTrueDebugJavaRes processSocialNetworkVpnNormalGoogleTrueDebugManifest processSocialNetworkVpnNormalGoogleTrueDebugResources processSocialNetworkVpnNormalGoogleTrueDebugUnitTestJavaRes processSocialNetworkVpnNormalSamsungDebugAndroidTestJavaRes processSocialNetworkVpnNormalSamsungDebugAndroidTestManifest processSocialNetworkVpnNormalSamsungDebugAndroidTestResources processSocialNetworkVpnNormalSamsungDebugGoogleServices processSocialNetworkVpnNormalSamsungDebugJavaRes processSocialNetworkVpnNormalSamsungDebugManifest processSocialNetworkVpnNormalSamsungDebugResources processSocialNetworkVpnNormalSamsungDebugUnitTestJavaRes processSocialNetworkVpnNormalSamsungReleaseGoogleServices processSocialNetworkVpnNormalSamsungReleaseJavaRes processSocialNetworkVpnNormalSamsungReleaseManifest processSocialNetworkVpnNormalSamsungReleaseMetadata processSocialNetworkVpnNormalSamsungReleaseResources processSocialNetworkVpnNormalSamsungReleaseUnitTestJavaRes processSocialNetworkVpnNormalSamsungTrueDebugGoogleServices processSocialNetworkVpnNormalSamsungTrueDebugJavaRes processSocialNetworkVpnNormalSamsungTrueDebugManifest processSocialNetworkVpnNormalSamsungTrueDebugResources processSocialNetworkVpnNormalSamsungTrueDebugUnitTestJavaRes processVpnShieldFreeGoogleDebugAndroidTestJavaRes processVpnShieldFreeGoogleDebugAndroidTestManifest processVpnShieldFreeGoogleDebugAndroidTestResources processVpnShieldFreeGoogleDebugGoogleServices processVpnShieldFreeGoogleDebugJavaRes processVpnShieldFreeGoogleDebugManifest processVpnShieldFreeGoogleDebugResources processVpnShieldFreeGoogleDebugUnitTestJavaRes processVpnShieldFreeGoogleReleaseGoogleServices processVpnShieldFreeGoogleReleaseJavaRes processVpnShieldFreeGoogleReleaseManifest processVpnShieldFreeGoogleReleaseMetadata processVpnShieldFreeGoogleReleaseResources processVpnShieldFreeGoogleReleaseUnitTestJavaRes processVpnShieldFreeGoogleStagingApiGoogleServices processVpnShieldFreeGoogleStagingApiJavaRes processVpnShieldFreeGoogleStagingApiManifest processVpnShieldFreeGoogleStagingApiResources processVpnShieldFreeGoogleStagingApiUnitTestJavaRes processVpnShieldFreeGoogleTrueDebugGoogleServices processVpnShieldFreeGoogleTrueDebugJavaRes processVpnShieldFreeGoogleTrueDebugManifest processVpnShieldFreeGoogleTrueDebugResources processVpnShieldFreeGoogleTrueDebugUnitTestJavaRes processVpnShieldMockedGoogleDebugAndroidTestJavaRes processVpnShieldMockedGoogleDebugAndroidTestManifest processVpnShieldMockedGoogleDebugAndroidTestResources processVpnShieldMockedGoogleDebugGoogleServices processVpnShieldMockedGoogleDebugJavaRes processVpnShieldMockedGoogleDebugManifest processVpnShieldMockedGoogleDebugResources processVpnShieldMockedGoogleDebugUnitTestJavaRes processVpnShieldMockedGoogleStagingApiGoogleServices processVpnShieldMockedGoogleStagingApiJavaRes processVpnShieldMockedGoogleStagingApiManifest processVpnShieldMockedGoogleStagingApiResources processVpnShieldMockedGoogleStagingApiUnitTestJavaRes processVpnShieldMockedGoogleTrueDebugGoogleServices processVpnShieldMockedGoogleTrueDebugJavaRes processVpnShieldMockedGoogleTrueDebugManifest processVpnShieldMockedGoogleTrueDebugResources processVpnShieldMockedGoogleTrueDebugUnitTestJavaRes processVpnShieldNormalAmazonDebugAndroidTestJavaRes processVpnShieldNormalAmazonDebugAndroidTestManifest processVpnShieldNormalAmazonDebugAndroidTestResources processVpnShieldNormalAmazonDebugGoogleServices processVpnShieldNormalAmazonDebugJavaRes processVpnShieldNormalAmazonDebugManifest processVpnShieldNormalAmazonDebugResources processVpnShieldNormalAmazonDebugUnitTestJavaRes processVpnShieldNormalAmazonReleaseGoogleServices processVpnShieldNormalAmazonReleaseJavaRes processVpnShieldNormalAmazonReleaseManifest processVpnShieldNormalAmazonReleaseMetadata processVpnShieldNormalAmazonReleaseResources processVpnShieldNormalAmazonReleaseUnitTestJavaRes processVpnShieldNormalAmazonStagingApiGoogleServices processVpnShieldNormalAmazonStagingApiJavaRes processVpnShieldNormalAmazonStagingApiManifest processVpnShieldNormalAmazonStagingApiResources processVpnShieldNormalAmazonStagingApiUnitTestJavaRes processVpnShieldNormalAmazonTrueDebugGoogleServices processVpnShieldNormalAmazonTrueDebugJavaRes processVpnShieldNormalAmazonTrueDebugManifest processVpnShieldNormalAmazonTrueDebugResources processVpnShieldNormalAmazonTrueDebugUnitTestJavaRes processVpnShieldNormalGoogleDebugAndroidTestJavaRes processVpnShieldNormalGoogleDebugAndroidTestManifest processVpnShieldNormalGoogleDebugAndroidTestResources processVpnShieldNormalGoogleDebugGoogleServices processVpnShieldNormalGoogleDebugJavaRes processVpnShieldNormalGoogleDebugManifest processVpnShieldNormalGoogleDebugResources processVpnShieldNormalGoogleDebugUnitTestJavaRes processVpnShieldNormalGoogleReleaseGoogleServices processVpnShieldNormalGoogleReleaseJavaRes processVpnShieldNormalGoogleReleaseManifest processVpnShieldNormalGoogleReleaseMetadata processVpnShieldNormalGoogleReleaseResources processVpnShieldNormalGoogleReleaseUnitTestJavaRes processVpnShieldNormalGoogleStagingApiGoogleServices processVpnShieldNormalGoogleStagingApiJavaRes processVpnShieldNormalGoogleStagingApiManifest processVpnShieldNormalGoogleStagingApiResources processVpnShieldNormalGoogleStagingApiUnitTestJavaRes processVpnShieldNormalGoogleTrueDebugGoogleServices processVpnShieldNormalGoogleTrueDebugJavaRes processVpnShieldNormalGoogleTrueDebugManifest processVpnShieldNormalGoogleTrueDebugResources processVpnShieldNormalGoogleTrueDebugUnitTestJavaRes processVpnShieldNormalSamsungDebugAndroidTestJavaRes processVpnShieldNormalSamsungDebugAndroidTestManifest processVpnShieldNormalSamsungDebugAndroidTestResources processVpnShieldNormalSamsungDebugGoogleServices processVpnShieldNormalSamsungDebugJavaRes processVpnShieldNormalSamsungDebugManifest processVpnShieldNormalSamsungDebugResources processVpnShieldNormalSamsungDebugUnitTestJavaRes processVpnShieldNormalSamsungReleaseGoogleServices processVpnShieldNormalSamsungReleaseJavaRes processVpnShieldNormalSamsungReleaseManifest processVpnShieldNormalSamsungReleaseMetadata processVpnShieldNormalSamsungReleaseResources processVpnShieldNormalSamsungReleaseUnitTestJavaRes processVpnShieldNormalSamsungStagingApiGoogleServices processVpnShieldNormalSamsungStagingApiJavaRes processVpnShieldNormalSamsungStagingApiManifest processVpnShieldNormalSamsungStagingApiResources processVpnShieldNormalSamsungStagingApiUnitTestJavaRes processVpnShieldNormalSamsungTrueDebugGoogleServices processVpnShieldNormalSamsungTrueDebugJavaRes processVpnShieldNormalSamsungTrueDebugManifest processVpnShieldNormalSamsungTrueDebugResources processVpnShieldNormalSamsungTrueDebugUnitTestJavaRes
publishApkSocialNetworkVpnNormalAmazonRelease
publishApkSocialNetworkVpnNormalSamsungRelease publishApkVpnShieldFreeGoogleRelease publishApkVpnShieldNormalAmazonRelease publishApkVpnShieldNormalGoogleRelease publishApkVpnShieldNormalSamsungRelease publishListingSocialNetworkVpnFreeGoogleRelease publishListingSocialNetworkVpnNormalAmazonRelease publishListingSocialNetworkVpnNormalGoogleRelease publishListingSocialNetworkVpnNormalSamsungRelease publishListingVpnShieldFreeGoogleRelease publishListingVpnShieldNormalAmazonRelease publishListingVpnShieldNormalGoogleRelease publishListingVpnShieldNormalSamsungRelease publishSocialNetworkVpnFreeGoogleReleaseApkWrapper publishSocialNetworkVpnFreeGoogleReleaseBundleWrapper publishSocialNetworkVpnNormalAmazonReleaseApkWrapper publishSocialNetworkVpnNormalAmazonReleaseBundleWrapper publishSocialNetworkVpnNormalGoogleReleaseApkWrapper publishSocialNetworkVpnNormalGoogleReleaseBundleWrapper publishSocialNetworkVpnNormalSamsungReleaseApkWrapper publishSocialNetworkVpnNormalSamsungReleaseBundleWrapper publishVpnShieldFreeGoogleReleaseApkWrapper publishVpnShieldFreeGoogleReleaseBundleWrapper publishVpnShieldNormalAmazonReleaseApkWrapper publishVpnShieldNormalAmazonReleaseBundleWrapper publishVpnShieldNormalGoogleReleaseApkWrapper publishVpnShieldNormalGoogleReleaseBundleWrapper publishVpnShieldNormalSamsungReleaseApkWrapper publishVpnShieldNormalSamsungReleaseBundleWrapper reportBuildArtifactsSocialNetworkVpnFreeGoogleDebug reportBuildArtifactsSocialNetworkVpnFreeGoogleRelease reportBuildArtifactsSocialNetworkVpnFreeGoogleTrueDebug reportBuildArtifactsSocialNetworkVpnNormalAmazonDebug reportBuildArtifactsSocialNetworkVpnNormalAmazonRelease reportBuildArtifactsSocialNetworkVpnNormalAmazonTrueDebug reportBuildArtifactsSocialNetworkVpnNormalGoogleDebug reportBuildArtifactsSocialNetworkVpnNormalGoogleRelease reportBuildArtifactsSocialNetworkVpnNormalGoogleTrueDebug reportBuildArtifactsSocialNetworkVpnNormalSamsungDebug reportBuildArtifactsSocialNetworkVpnNormalSamsungRelease reportBuildArtifactsSocialNetworkVpnNormalSamsungTrueDebug reportBuildArtifactsVpnShieldFreeGoogleDebug reportBuildArtifactsVpnShieldFreeGoogleRelease reportBuildArtifactsVpnShieldFreeGoogleStagingApi reportBuildArtifactsVpnShieldFreeGoogleTrueDebug reportBuildArtifactsVpnShieldMockedGoogleDebug reportBuildArtifactsVpnShieldMockedGoogleStagingApi reportBuildArtifactsVpnShieldMockedGoogleTrueDebug reportBuildArtifactsVpnShieldNormalAmazonDebug reportBuildArtifactsVpnShieldNormalAmazonRelease reportBuildArtifactsVpnShieldNormalAmazonStagingApi reportBuildArtifactsVpnShieldNormalAmazonTrueDebug reportBuildArtifactsVpnShieldNormalGoogleDebug reportBuildArtifactsVpnShieldNormalGoogleRelease reportBuildArtifactsVpnShieldNormalGoogleStagingApi reportBuildArtifactsVpnShieldNormalGoogleTrueDebug reportBuildArtifactsVpnShieldNormalSamsungDebug reportBuildArtifactsVpnShieldNormalSamsungRelease reportBuildArtifactsVpnShieldNormalSamsungStagingApi reportBuildArtifactsVpnShieldNormalSamsungTrueDebug reportSourceSetTransformAmazon reportSourceSetTransformAndroidTest reportSourceSetTransformAndroidTestAmazon reportSourceSetTransformAndroidTestDebug reportSourceSetTransformAndroidTestFree reportSourceSetTransformAndroidTestGoogle reportSourceSetTransformAndroidTestMocked reportSourceSetTransformAndroidTestNormal reportSourceSetTransformAndroidTestSamsung reportSourceSetTransformAndroidTestSocialNetworkVpn reportSourceSetTransformAndroidTestSocialNetworkVpnFreeGoogle reportSourceSetTransformAndroidTestSocialNetworkVpnFreeGoogleDebug reportSourceSetTransformAndroidTestSocialNetworkVpnNormalAmazon reportSourceSetTransformAndroidTestSocialNetworkVpnNormalAmazonDebug reportSourceSetTransformAndroidTestSocialNetworkVpnNormalGoogle reportSourceSetTransformAndroidTestSocialNetworkVpnNormalGoogleDebug reportSourceSetTransformAndroidTestSocialNetworkVpnNormalSamsung reportSourceSetTransformAndroidTestSocialNetworkVpnNormalSamsungDebug reportSourceSetTransformAndroidTestVpnShield reportSourceSetTransformAndroidTestVpnShieldFreeGoogle reportSourceSetTransformAndroidTestVpnShieldFreeGoogleDebug reportSourceSetTransformAndroidTestVpnShieldMockedGoogle reportSourceSetTransformAndroidTestVpnShieldMockedGoogleDebug reportSourceSetTransformAndroidTestVpnShieldNormalAmazon reportSourceSetTransformAndroidTestVpnShieldNormalAmazonDebug reportSourceSetTransformAndroidTestVpnShieldNormalGoogle reportSourceSetTransformAndroidTestVpnShieldNormalGoogleDebug reportSourceSetTransformAndroidTestVpnShieldNormalSamsung reportSourceSetTransformAndroidTestVpnShieldNormalSamsungDebug reportSourceSetTransformDebug reportSourceSetTransformFree reportSourceSetTransformGoogle reportSourceSetTransformMain reportSourceSetTransformMocked reportSourceSetTransformNormal reportSourceSetTransformRelease reportSourceSetTransformSamsung reportSourceSetTransformSocialNetworkVpn reportSourceSetTransformSocialNetworkVpnFreeGoogle reportSourceSetTransformSocialNetworkVpnFreeGoogleDebug reportSourceSetTransformSocialNetworkVpnFreeGoogleRelease reportSourceSetTransformSocialNetworkVpnFreeGoogleTrueDebug reportSourceSetTransformSocialNetworkVpnNormalAmazon reportSourceSetTransformSocialNetworkVpnNormalAmazonDebug reportSourceSetTransformSocialNetworkVpnNormalAmazonRelease reportSourceSetTransformSocialNetworkVpnNormalAmazonTrueDebug reportSourceSetTransformSocialNetworkVpnNormalGoogle reportSourceSetTransformSocialNetworkVpnNormalGoogleDebug reportSourceSetTransformSocialNetworkVpnNormalGoogleRelease reportSourceSetTransformSocialNetworkVpnNormalGoogleTrueDebug reportSourceSetTransformSocialNetworkVpnNormalSamsung reportSourceSetTransformSocialNetworkVpnNormalSamsungDebug reportSourceSetTransformSocialNetworkVpnNormalSamsungRelease reportSourceSetTransformSocialNetworkVpnNormalSamsungTrueDebug reportSourceSetTransformStagingApi reportSourceSetTransformTest reportSourceSetTransformTestAmazon reportSourceSetTransformTestDebug reportSourceSetTransformTestFree reportSourceSetTransformTestGoogle reportSourceSetTransformTestMocked reportSourceSetTransformTestNormal reportSourceSetTransformTestRelease reportSourceSetTransformTestSamsung reportSourceSetTransformTestSocialNetworkVpn reportSourceSetTransformTestSocialNetworkVpnFreeGoogle reportSourceSetTransformTestSocialNetworkVpnFreeGoogleDebug reportSourceSetTransformTestSocialNetworkVpnFreeGoogleRelease reportSourceSetTransformTestSocialNetworkVpnFreeGoogleTrueDebug reportSourceSetTransformTestSocialNetworkVpnNormalAmazon reportSourceSetTransformTestSocialNetworkVpnNormalAmazonDebug reportSourceSetTransformTestSocialNetworkVpnNormalAmazonRelease reportSourceSetTransformTestSocialNetworkVpnNormalAmazonTrueDebug reportSourceSetTransformTestSocialNetworkVpnNormalGoogle reportSourceSetTransformTestSocialNetworkVpnNormalGoogleDebug reportSourceSetTransformTestSocialNetworkVpnNormalGoogleRelease reportSourceSetTransformTestSocialNetworkVpnNormalGoogleTrueDebug reportSourceSetTransformTestSocialNetworkVpnNormalSamsung reportSourceSetTransformTestSocialNetworkVpnNormalSamsungDebug reportSourceSetTransformTestSocialNetworkVpnNormalSamsungRelease reportSourceSetTransformTestSocialNetworkVpnNormalSamsungTrueDebug reportSourceSetTransformTestStagingApi reportSourceSetTransformTestTrueDebug reportSourceSetTransformTestVpnShield reportSourceSetTransformTestVpnShieldFreeGoogle reportSourceSetTransformTestVpnShieldFreeGoogleDebug reportSourceSetTransformTestVpnShieldFreeGoogleRelease reportSourceSetTransformTestVpnShieldFreeGoogleStagingApi reportSourceSetTransformTestVpnShieldFreeGoogleTrueDebug reportSourceSetTransformTestVpnShieldMockedGoogle reportSourceSetTransformTestVpnShieldMockedGoogleDebug reportSourceSetTransformTestVpnShieldMockedGoogleStagingApi reportSourceSetTransformTestVpnShieldMockedGoogleTrueDebug reportSourceSetTransformTestVpnShieldNormalAmazon reportSourceSetTransformTestVpnShieldNormalAmazonDebug reportSourceSetTransformTestVpnShieldNormalAmazonRelease reportSourceSetTransformTestVpnShieldNormalAmazonStagingApi reportSourceSetTransformTestVpnShieldNormalAmazonTrueDebug reportSourceSetTransformTestVpnShieldNormalGoogle reportSourceSetTransformTestVpnShieldNormalGoogleDebug reportSourceSetTransformTestVpnShieldNormalGoogleRelease reportSourceSetTransformTestVpnShieldNormalGoogleStagingApi reportSourceSetTransformTestVpnShieldNormalGoogleTrueDebug reportSourceSetTransformTestVpnShieldNormalSamsung reportSourceSetTransformTestVpnShieldNormalSamsungDebug reportSourceSetTransformTestVpnShieldNormalSamsungRelease reportSourceSetTransformTestVpnShieldNormalSamsungStagingApi reportSourceSetTransformTestVpnShieldNormalSamsungTrueDebug reportSourceSetTransformTrueDebug reportSourceSetTransformVpnShield reportSourceSetTransformVpnShieldFreeGoogle reportSourceSetTransformVpnShieldFreeGoogleDebug reportSourceSetTransformVpnShieldFreeGoogleRelease reportSourceSetTransformVpnShieldFreeGoogleStagingApi reportSourceSetTransformVpnShieldFreeGoogleTrueDebug reportSourceSetTransformVpnShieldMockedGoogle reportSourceSetTransformVpnShieldMockedGoogleDebug reportSourceSetTransformVpnShieldMockedGoogleStagingApi reportSourceSetTransformVpnShieldMockedGoogleTrueDebug reportSourceSetTransformVpnShieldNormalAmazon reportSourceSetTransformVpnShieldNormalAmazonDebug reportSourceSetTransformVpnShieldNormalAmazonRelease reportSourceSetTransformVpnShieldNormalAmazonStagingApi reportSourceSetTransformVpnShieldNormalAmazonTrueDebug reportSourceSetTransformVpnShieldNormalGoogle reportSourceSetTransformVpnShieldNormalGoogleDebug reportSourceSetTransformVpnShieldNormalGoogleRelease reportSourceSetTransformVpnShieldNormalGoogleStagingApi reportSourceSetTransformVpnShieldNormalGoogleTrueDebug reportSourceSetTransformVpnShieldNormalSamsung reportSourceSetTransformVpnShieldNormalSamsungDebug reportSourceSetTransformVpnShieldNormalSamsungRelease reportSourceSetTransformVpnShieldNormalSamsungStagingApi reportSourceSetTransformVpnShieldNormalSamsungTrueDebug resolveConfigAttr shrinkSocialNetworkVpnFreeGoogleReleaseResources shrinkSocialNetworkVpnNormalAmazonReleaseResources shrinkSocialNetworkVpnNormalGoogleReleaseResources shrinkSocialNetworkVpnNormalSamsungReleaseResources shrinkVpnShieldFreeGoogleReleaseResources shrinkVpnShieldNormalAmazonReleaseResources shrinkVpnShieldNormalGoogleReleaseResources shrinkVpnShieldNormalSamsungReleaseResources signingConfigWriterSocialNetworkVpnFreeGoogleDebug signingConfigWriterSocialNetworkVpnFreeGoogleDebugAndroidTest signingConfigWriterSocialNetworkVpnFreeGoogleRelease signingConfigWriterSocialNetworkVpnFreeGoogleTrueDebug signingConfigWriterSocialNetworkVpnNormalAmazonDebug signingConfigWriterSocialNetworkVpnNormalAmazonDebugAndroidTest signingConfigWriterSocialNetworkVpnNormalAmazonRelease signingConfigWriterSocialNetworkVpnNormalAmazonTrueDebug signingConfigWriterSocialNetworkVpnNormalGoogleDebug signingConfigWriterSocialNetworkVpnNormalGoogleDebugAndroidTest signingConfigWriterSocialNetworkVpnNormalGoogleRelease signingConfigWriterSocialNetworkVpnNormalGoogleTrueDebug signingConfigWriterSocialNetworkVpnNormalSamsungDebug signingConfigWriterSocialNetworkVpnNormalSamsungDebugAndroidTest signingConfigWriterSocialNetworkVpnNormalSamsungRelease signingConfigWriterSocialNetworkVpnNormalSamsungTrueDebug signingConfigWriterVpnShieldFreeGoogleDebug signingConfigWriterVpnShieldFreeGoogleDebugAndroidTest signingConfigWriterVpnShieldFreeGoogleRelease signingConfigWriterVpnShieldFreeGoogleStagingApi signingConfigWriterVpnShieldFreeGoogleTrueDebug signingConfigWriterVpnShieldMockedGoogleDebug signingConfigWriterVpnShieldMockedGoogleDebugAndroidTest signingConfigWriterVpnShieldMockedGoogleStagingApi signingConfigWriterVpnShieldMockedGoogleTrueDebug signingConfigWriterVpnShieldNormalAmazonDebug signingConfigWriterVpnShieldNormalAmazonDebugAndroidTest signingConfigWriterVpnShieldNormalAmazonRelease signingConfigWriterVpnShieldNormalAmazonStagingApi signingConfigWriterVpnShieldNormalAmazonTrueDebug signingConfigWriterVpnShieldNormalGoogleDebug signingConfigWriterVpnShieldNormalGoogleDebugAndroidTest signingConfigWriterVpnShieldNormalGoogleRelease signingConfigWriterVpnShieldNormalGoogleStagingApi signingConfigWriterVpnShieldNormalGoogleTrueDebug signingConfigWriterVpnShieldNormalSamsungDebug signingConfigWriterVpnShieldNormalSamsungDebugAndroidTest signingConfigWriterVpnShieldNormalSamsungRelease signingConfigWriterVpnShieldNormalSamsungStagingApi signingConfigWriterVpnShieldNormalSamsungTrueDebug signSocialNetworkVpnFreeGoogleDebugBundle signSocialNetworkVpnFreeGoogleReleaseBundle signSocialNetworkVpnFreeGoogleTrueDebugBundle signSocialNetworkVpnNormalAmazonDebugBundle signSocialNetworkVpnNormalAmazonReleaseBundle signSocialNetworkVpnNormalAmazonTrueDebugBundle signSocialNetworkVpnNormalGoogleDebugBundle signSocialNetworkVpnNormalGoogleReleaseBundle signSocialNetworkVpnNormalGoogleTrueDebugBundle signSocialNetworkVpnNormalSamsungDebugBundle signSocialNetworkVpnNormalSamsungReleaseBundle signSocialNetworkVpnNormalSamsungTrueDebugBundle signVpnShieldFreeGoogleDebugBundle signVpnShieldFreeGoogleReleaseBundle signVpnShieldFreeGoogleStagingApiBundle signVpnShieldFreeGoogleTrueDebugBundle signVpnShieldMockedGoogleDebugBundle signVpnShieldMockedGoogleStagingApiBundle signVpnShieldMockedGoogleTrueDebugBundle signVpnShieldNormalAmazonDebugBundle signVpnShieldNormalAmazonReleaseBundle signVpnShieldNormalAmazonStagingApiBundle signVpnShieldNormalAmazonTrueDebugBundle signVpnShieldNormalGoogleDebugBundle signVpnShieldNormalGoogleReleaseBundle signVpnShieldNormalGoogleStagingApiBundle signVpnShieldNormalGoogleTrueDebugBundle signVpnShieldNormalSamsungDebugBundle signVpnShieldNormalSamsungReleaseBundle signVpnShieldNormalSamsungStagingApiBundle signVpnShieldNormalSamsungTrueDebugBundle stripSocialNetworkVpnFreeGoogleDebugDebugSymbols stripSocialNetworkVpnFreeGoogleReleaseDebugSymbols stripSocialNetworkVpnFreeGoogleTrueDebugDebugSymbols stripSocialNetworkVpnNormalAmazonDebugDebugSymbols stripSocialNetworkVpnNormalAmazonReleaseDebugSymbols stripSocialNetworkVpnNormalAmazonTrueDebugDebugSymbols stripSocialNetworkVpnNormalGoogleDebugDebugSymbols stripSocialNetworkVpnNormalGoogleReleaseDebugSymbols stripSocialNetworkVpnNormalGoogleTrueDebugDebugSymbols stripSocialNetworkVpnNormalSamsungDebugDebugSymbols stripSocialNetworkVpnNormalSamsungReleaseDebugSymbols stripSocialNetworkVpnNormalSamsungTrueDebugDebugSymbols stripVpnShieldFreeGoogleDebugDebugSymbols stripVpnShieldFreeGoogleReleaseDebugSymbols stripVpnShieldFreeGoogleStagingApiDebugSymbols stripVpnShieldFreeGoogleTrueDebugDebugSymbols stripVpnShieldMockedGoogleDebugDebugSymbols stripVpnShieldMockedGoogleStagingApiDebugSymbols stripVpnShieldMockedGoogleTrueDebugDebugSymbols stripVpnShieldNormalAmazonDebugDebugSymbols stripVpnShieldNormalAmazonReleaseDebugSymbols stripVpnShieldNormalAmazonStagingApiDebugSymbols stripVpnShieldNormalAmazonTrueDebugDebugSymbols stripVpnShieldNormalGoogleDebugDebugSymbols stripVpnShieldNormalGoogleReleaseDebugSymbols stripVpnShieldNormalGoogleStagingApiDebugSymbols stripVpnShieldNormalGoogleTrueDebugDebugSymbols stripVpnShieldNormalSamsungDebugDebugSymbols stripVpnShieldNormalSamsungReleaseDebugSymbols stripVpnShieldNormalSamsungStagingApiDebugSymbols stripVpnShieldNormalSamsungTrueDebugDebugSymbols transformClassesAndDexWithShrinkResForSocialNetworkVpnFreeGoogleRelease transformClassesAndDexWithShrinkResForSocialNetworkVpnNormalAmazonRelease transformClassesAndDexWithShrinkResForSocialNetworkVpnNormalGoogleRelease transformClassesAndDexWithShrinkResForSocialNetworkVpnNormalSamsungRelease transformClassesAndDexWithShrinkResForVpnShieldFreeGoogleRelease transformClassesAndDexWithShrinkResForVpnShieldNormalAmazonRelease transformClassesAndDexWithShrinkResForVpnShieldNormalGoogleRelease transformClassesAndDexWithShrinkResForVpnShieldNormalSamsungRelease transformClassesAndResourcesWithR8ForSocialNetworkVpnFreeGoogleRelease transformClassesAndResourcesWithR8ForSocialNetworkVpnNormalAmazonRelease transformClassesAndResourcesWithR8ForSocialNetworkVpnNormalGoogleRelease transformClassesAndResourcesWithR8ForSocialNetworkVpnNormalSamsungRelease transformClassesAndResourcesWithR8ForVpnShieldFreeGoogleRelease transformClassesAndResourcesWithR8ForVpnShieldNormalAmazonRelease transformClassesAndResourcesWithR8ForVpnShieldNormalGoogleRelease transformClassesAndResourcesWithR8ForVpnShieldNormalSamsungRelease transformClassesWithDexBuilderForSocialNetworkVpnFreeGoogleDebug transformClassesWithDexBuilderForSocialNetworkVpnFreeGoogleDebugAndroidTest transformClassesWithDexBuilderForSocialNetworkVpnFreeGoogleTrueDebug transformClassesWithDexBuilderForSocialNetworkVpnNormalAmazonDebug transformClassesWithDexBuilderForSocialNetworkVpnNormalAmazonDebugAndroidTest transformClassesWithDexBuilderForSocialNetworkVpnNormalAmazonTrueDebug transformClassesWithDexBuilderForSocialNetworkVpnNormalGoogleDebug transformClassesWithDexBuilderForSocialNetworkVpnNormalGoogleDebugAndroidTest transformClassesWithDexBuilderForSocialNetworkVpnNormalGoogleTrueDebug transformClassesWithDexBuilderForSocialNetworkVpnNormalSamsungDebug transformClassesWithDexBuilderForSocialNetworkVpnNormalSamsungDebugAndroidTest transformClassesWithDexBuilderForSocialNetworkVpnNormalSamsungTrueDebug transformClassesWithDexBuilderForVpnShieldFreeGoogleDebug transformClassesWithDexBuilderForVpnShieldFreeGoogleDebugAndroidTest transformClassesWithDexBuilderForVpnShieldFreeGoogleStagingApi transformClassesWithDexBuilderForVpnShieldFreeGoogleTrueDebug transformClassesWithDexBuilderForVpnShieldMockedGoogleDebug transformClassesWithDexBuilderForVpnShieldMockedGoogleDebugAndroidTest transformClassesWithDexBuilderForVpnShieldMockedGoogleStagingApi transformClassesWithDexBuilderForVpnShieldMockedGoogleTrueDebug transformClassesWithDexBuilderForVpnShieldNormalAmazonDebug transformClassesWithDexBuilderForVpnShieldNormalAmazonDebugAndroidTest transformClassesWithDexBuilderForVpnShieldNormalAmazonStagingApi transformClassesWithDexBuilderForVpnShieldNormalAmazonTrueDebug transformClassesWithDexBuilderForVpnShieldNormalGoogleDebug transformClassesWithDexBuilderForVpnShieldNormalGoogleDebugAndroidTest transformClassesWithDexBuilderForVpnShieldNormalGoogleStagingApi transformClassesWithDexBuilderForVpnShieldNormalGoogleTrueDebug transformClassesWithDexBuilderForVpnShieldNormalSamsungDebug transformClassesWithDexBuilderForVpnShieldNormalSamsungDebugAndroidTest transformClassesWithDexBuilderForVpnShieldNormalSamsungStagingApi transformClassesWithDexBuilderForVpnShieldNormalSamsungTrueDebug validateSigningSocialNetworkVpnFreeGoogleDebug validateSigningSocialNetworkVpnFreeGoogleDebugAndroidTest validateSigningSocialNetworkVpnFreeGoogleRelease validateSigningSocialNetworkVpnFreeGoogleTrueDebug validateSigningSocialNetworkVpnNormalAmazonDebug validateSigningSocialNetworkVpnNormalAmazonDebugAndroidTest validateSigningSocialNetworkVpnNormalAmazonRelease validateSigningSocialNetworkVpnNormalAmazonTrueDebug validateSigningSocialNetworkVpnNormalGoogleDebug validateSigningSocialNetworkVpnNormalGoogleDebugAndroidTest validateSigningSocialNetworkVpnNormalGoogleRelease validateSigningSocialNetworkVpnNormalGoogleTrueDebug validateSigningSocialNetworkVpnNormalSamsungDebug validateSigningSocialNetworkVpnNormalSamsungDebugAndroidTest validateSigningSocialNetworkVpnNormalSamsungRelease validateSigningSocialNetworkVpnNormalSamsungTrueDebug validateSigningVpnShieldFreeGoogleDebug validateSigningVpnShieldFreeGoogleDebugAndroidTest validateSigningVpnShieldFreeGoogleRelease validateSigningVpnShieldFreeGoogleStagingApi validateSigningVpnShieldFreeGoogleTrueDebug validateSigningVpnShieldMockedGoogleDebug validateSigningVpnShieldMockedGoogleDebugAndroidTest validateSigningVpnShieldMockedGoogleStagingApi validateSigningVpnShieldMockedGoogleTrueDebug validateSigningVpnShieldNormalAmazonDebug validateSigningVpnShieldNormalAmazonDebugAndroidTest validateSigningVpnShieldNormalAmazonRelease validateSigningVpnShieldNormalAmazonStagingApi validateSigningVpnShieldNormalAmazonTrueDebug validateSigningVpnShieldNormalGoogleDebug validateSigningVpnShieldNormalGoogleDebugAndroidTest validateSigningVpnShieldNormalGoogleRelease validateSigningVpnShieldNormalGoogleStagingApi validateSigningVpnShieldNormalGoogleTrueDebug validateSigningVpnShieldNormalSamsungDebug validateSigningVpnShieldNormalSamsungDebugAndroidTest validateSigningVpnShieldNormalSamsungRelease validateSigningVpnShieldNormalSamsungStagingApi validateSigningVpnShieldNormalSamsungTrueDebug writeSocialNetworkVpnFreeGoogleDebugApplicationId writeSocialNetworkVpnFreeGoogleDebugModuleMetadata writeSocialNetworkVpnFreeGoogleReleaseApplicationId writeSocialNetworkVpnFreeGoogleReleaseModuleMetadata writeSocialNetworkVpnFreeGoogleTrueDebugApplicationId writeSocialNetworkVpnFreeGoogleTrueDebugModuleMetadata writeSocialNetworkVpnNormalAmazonDebugApplicationId writeSocialNetworkVpnNormalAmazonDebugModuleMetadata writeSocialNetworkVpnNormalAmazonReleaseApplicationId writeSocialNetworkVpnNormalAmazonReleaseModuleMetadata writeSocialNetworkVpnNormalAmazonTrueDebugApplicationId writeSocialNetworkVpnNormalAmazonTrueDebugModuleMetadata writeSocialNetworkVpnNormalGoogleDebugApplicationId writeSocialNetworkVpnNormalGoogleDebugModuleMetadata writeSocialNetworkVpnNormalGoogleReleaseApplicationId writeSocialNetworkVpnNormalGoogleReleaseModuleMetadata writeSocialNetworkVpnNormalGoogleTrueDebugApplicationId writeSocialNetworkVpnNormalGoogleTrueDebugModuleMetadata writeSocialNetworkVpnNormalSamsungDebugApplicationId writeSocialNetworkVpnNormalSamsungDebugModuleMetadata writeSocialNetworkVpnNormalSamsungReleaseApplicationId writeSocialNetworkVpnNormalSamsungReleaseModuleMetadata writeSocialNetworkVpnNormalSamsungTrueDebugApplicationId writeSocialNetworkVpnNormalSamsungTrueDebugModuleMetadata writeVpnShieldFreeGoogleDebugApplicationId writeVpnShieldFreeGoogleDebugModuleMetadata writeVpnShieldFreeGoogleReleaseApplicationId writeVpnShieldFreeGoogleReleaseModuleMetadata writeVpnShieldFreeGoogleStagingApiApplicationId writeVpnShieldFreeGoogleStagingApiModuleMetadata writeVpnShieldFreeGoogleTrueDebugApplicationId writeVpnShieldFreeGoogleTrueDebugModuleMetadata writeVpnShieldMockedGoogleDebugApplicationId writeVpnShieldMockedGoogleDebugModuleMetadata writeVpnShieldMockedGoogleStagingApiApplicationId writeVpnShieldMockedGoogleStagingApiModuleMetadata writeVpnShieldMockedGoogleTrueDebugApplicationId writeVpnShieldMockedGoogleTrueDebugModuleMetadata writeVpnShieldNormalAmazonDebugApplicationId writeVpnShieldNormalAmazonDebugModuleMetadata writeVpnShieldNormalAmazonReleaseApplicationId writeVpnShieldNormalAmazonReleaseModuleMetadata writeVpnShieldNormalAmazonStagingApiApplicationId writeVpnShieldNormalAmazonStagingApiModuleMetadata writeVpnShieldNormalAmazonTrueDebugApplicationId writeVpnShieldNormalAmazonTrueDebugModuleMetadata writeVpnShieldNormalGoogleDebugApplicationId writeVpnShieldNormalGoogleDebugModuleMetadata writeVpnShieldNormalGoogleReleaseApplicationId writeVpnShieldNormalGoogleReleaseModuleMetadata writeVpnShieldNormalGoogleStagingApiApplicationId writeVpnShieldNormalGoogleStagingApiModuleMetadata writeVpnShieldNormalGoogleTrueDebugApplicationId writeVpnShieldNormalGoogleTrueDebugModuleMetadata writeVpnShieldNormalSamsungDebugApplicationId writeVpnShieldNormalSamsungDebugModuleMetadata writeVpnShieldNormalSamsungReleaseApplicationId writeVpnShieldNormalSamsungReleaseModuleMetadata writeVpnShieldNormalSamsungStagingApiApplicationId writeVpnShieldNormalSamsungStagingApiModuleMetadata writeVpnShieldNormalSamsungTrueDebugApplicationId writeVpnShieldNormalSamsungTrueDebugModuleMetadata
@SUPERCILEX Do you have an idea what is wrong?
No, I've been scratching my head on this one. 😢 If you can create a reproducible sample or somehow share that project with me privately, that would be a huge help.
Describe the bug
Appeared when I tried to deploy apk to google store. I understood that problem with my app. Because I have another app that I can upload as well. But maybe someone can help me to resolve this issue. Unfortunately, I didn`t found any normal instructions about what to do in this case.
Could someone suggest something?
Versions
2.6.0