google-play-console

Promotion of app from beta to production on Google Play working with Build Variants

最后都变了- 提交于 2020-01-03 05:21:12
问题 I have the follow situation Scenario Part 1. An app working with Build Variants : debug , beta and release as follow buildTypes { debug { versionNameSuffix '-DEBUG' applicationIdSuffix '.debug' buildConfigField "String", "SERVER_URL", '"url local test"' debuggable true signingConfig signingConfigs.config } beta { versionNameSuffix '-BETA' buildConfigField "String", "SERVER_URL", '"url homologation"' signingConfig signingConfigs.config } release { buildConfigField "String", "SERVER_URL", '"url

Remediation for JavaScript Interface Injection Vulnerability

时间秒杀一切 提交于 2020-01-02 03:37:10
问题 I received a warning from Google Play Console that refers me to this page because I used JavaScript Interface in my app and suggest two options to solve the problem . Option 1 tells : Ensure that there are no objects added to the JavaScript interface of any WebView that loads untrusted web content. You can do this in two ways: Ensure that no objects are ever added to the JavaScript interface via calls to addJavascriptInterface. Remove objects from the JavaScript interface in

Permissions Declaration Form still showing in Google Play Console even with updated APK uploaded without READ_CALL_LOG

旧巷老猫 提交于 2019-12-30 08:29:08
问题 TL;DR Google Play Console forces to show Permissions Declaration Form (see below) as soon as "Create Release" button clicked even if updated APK uploaded without READ_CALL_LOG which caused the warning email from Google before. Question How to avoid the Permissions Declaration Form which looks irrelevant if releasing updated APK without sensitive permissions? Problem in details PRODUCTION and ALPHA releases were submitted with READ_CALL_LOG permission before Google emailed about prohibit to

Android application published but not accessible (or downloadable) in the Play Store

二次信任 提交于 2019-12-25 02:15:40
问题 I have been talking with the support of the playstore for over 4 months because I have published an application but despite it being on the playstore it is not possible to install it (or access the related page to download). The support has suggested me to create a new app and republish it, I did it but now I have two identical published apps that have the same problem. In the Google Play Console there are no errors reported with the publication but of course the download data are 0. Can you

My app crashes in Play Console (signal 11 (SIGSEGV), code 1 (SEGV_MAPERR))

ぐ巨炮叔叔 提交于 2019-12-24 10:46:57
问题 Android app (hybrid app built on cordova) recorded more crashes in Google Play Console, signal 11 (SIGSEGV), code 1 (SEGV_MAPERR). crash happening only in production app pid: 0, tid: 0 >>> My App package name <<< backtrace: #00 pc 000000000147a832 /data/app/com.android.chrome-HY_VMhbJ0-Nzo6iNC_o1EA==/base.apk #01 pc 0000000000000000 <unknown> I had checked below links also but no use android Fatal signal 11 (SIGSEGV), code 1, fault addr 0x9 in tid 27173 signal 11 (SIGSEGV), code 1 (SEGV

Automatically uninstalling the older app before installing the new one

你离开我真会死。 提交于 2019-12-24 10:29:54
问题 I published my app on play store and I have made an update that may cause the older one to crash due to some database structure changes that I have made and I have had a hell of hustle trying to automate DB migration upon installation. So I want the to completely auto-uninstall the old one from users phone before new one is installed during update as an easy solution. Is there a way I can include such configurations? 回答1: No, there is no way to force uninstallation before installation. But it

Strange stacktrace reported by Google Play Console

泄露秘密 提交于 2019-12-23 17:40:10
问题 I'm getting this kind of stacktraces in the crash reports provided by Google Play Console: at com.example.ClassA.createInstance (ClassA.java) or .op1(ClassA.java) or .op2(ClassA.java) or .op3 (ClassA.java) or .op4 (ClassA.java) Does anybody knows why are "or"(s) in the stacktrace ? I'm guessing is something about the code obfuscation. Thanks. 来源: https://stackoverflow.com/questions/46608036/strange-stacktrace-reported-by-google-play-console

Google Play Console Developers Account - Transfer ownership

不羁岁月 提交于 2019-12-23 09:27:29
问题 As the title mentions - How can I change the ownership of a Google Play Console Developer's Account. Change the ownership means to associate the developer's account with a different Gmail account & let the previous association be let go (and possibly not pay the $25 USD registration fee again). Note : There is a similar question asked but I think it's incorrectly marked as a duplicate of a question which doesn't answer the question. (It answers How to transfer apps to another account) . I

Google Play Console: Package name of your Instant App APKs should be the same as your app's package name

泄露秘密 提交于 2019-12-22 18:07:11
问题 I'm trying to upload into develop my Instant App with Google Play Console, but it returns an error: Package name of your Instant App APKs should be the same as your app's package name. I have a feature call base , the apk and the instantApp feature too, everyone has its own gradle file and the apk and the instantApp implements the base feature: dependencies { implementation project(':base') } I try to publish the .apk building by Build/Generate signed APK... with the same key of the

How can I specify or get the resource id of a nativescript textfield

最后都变了- 提交于 2019-12-21 07:16:39
问题 We are using nativescript with angular for our mobile app. I want to use the Google Play pre-launch report feature, but our app requires a password to be entered. Google Play allows specifying a password but you need a resource name so the testing script can identify where to put the password. How can I specify or receive the resource name of a nativescript textfield, either in the view or by code behind or via any other means? The view in question: <StackLayout class="form"> <GridLayout