apk

React Native build error: Text must not be null or empty

寵の児 提交于 2019-12-10 04:37:01
问题 My Jenkins build has given me the following error: 13:18:22 FAILURE: Build failed with an exception. 13:18:22 13:18:22 * Where: 13:18:22 Script '/Users/abcd/Jenkins/Jenkins-Workspaces/ABCD/ABCDL/node_modules/@react-native-community/cli-platform-android/native_modules.gradle' line: 190 13:18:22 13:18:22 * What went wrong: 13:18:22 A problem occurred evaluating settings 'AppName'. 13:18:22 > Text must not be null or empty 13:18:22 It seems the problem is with the @react-native-community/cli

Meteor: ANDROID_HOME is not set even though it is set

会有一股神秘感。 提交于 2019-12-10 04:35:34
问题 OS : Ubuntu 14.04 Framework: Meteor 1.1.0.2 Application Name: Songofy Here's the output of meteor install-sdk android meteor install-sdk android ✓ Found Android bundle ✓ A JDK is installed ✓ Found Android Platform tools ✓ Found Android Build Tools ✓ Found Android 19 API ✓ Found suitable Android x86 image ✓ 'meteor' android virtual device (AVD) found ✗ Android emulator acceleration is not installed (The Android emulator will be very slow without acceleration) Platform requirements not yet met

How to get Google-Service.Json file in decompile apk?

醉酒当歌 提交于 2019-12-10 02:34:52
问题 I want to know that is it possible to get google-service.json file when reverse engineering on android apk. Because in firebase Google-Service json file contain all keys of project. 回答1: JSON file is not included in your APK, what happens is your google/firebase Gradle plugin reads the JSON file and inserts it in string resource file. But by reverese engineering an apk using tools like apktool , anyone can access these resource files including your string resource file and raw string you put

How internal tester can download the “Android” pre-released App build?

假如想象 提交于 2019-12-10 01:27:11
问题 Could anyone plz let me know, How internal tester can download the "Android" pre-released App build ? Because now "TestFlight" is only for iOS as acquired by Apple. Whether, solution is to upload the Android pre-release app build on "Google Play" and invite internal-tester to get download. **Earlier I used "TestFlight", I downloaded pre-released app build on iOS7 device, the distributed by Developer for internal testing. Thanks, 回答1: Use opt-in URL, which is generated in the "Internal test"

Android studio打包签名apk的bug们

六眼飞鱼酱① 提交于 2019-12-10 01:24:08
先吐槽一句,AndroidStudio真心是我碰壁最多的软件,也不知道怎么这么多障碍找上我了。。。 用as打包apk网上有很多教程,比如 这位博主 提到的方法,也是最正常简单的方式。但是! 列举一下遇到的各种问题吧。 JKS 密钥库使用专用格式。建议使用 “keytool -importkeystore -srckeystore jhy-release-key.jks -destkeystore jhy-release-key.jks -deststoretype pkcs12” 迁移到行业标准格式 PKCS12 解决 :我是没管这个warning的,因为我试了它提示的keytool命令,但是出现了getlength什么的新错误,所以干脆不改了。 使用以上链接中步骤打包后没有签名,提示jar not signed巴拉巴拉 解决 :从这里开始我就没再用AS了,简直坑我。。就使用命令行的方式吧,轻松快捷: 在build完之后 :(1)生成签名文件的命令: keytool -genkey -v -keystore 签名文件.jks -keyalg RSA -keysize 2048 -validity 10000 -alias 别名(随便起但是要记住) 之后需要填一些信息,可以随便填但是至少要填一个才行。 (2)对build之后的apk进行签名: jarsigner -verbose

Android App Users Get “App not installed” When Attempting to Update

帅比萌擦擦* 提交于 2019-12-10 01:14:03
问题 UPDATE: To those who asked about which error codes the users are receiving: there are no error codes. It just opens a blank, post-installation page that says "The app was not installed" with a big 'X' next to it. It's possible different versions of Android could have different messages. There is no indication for what went wrong during the installation. UPDATE 2: Some users reported that they receive error code "-504" when they try to install/update from the Play Store, and the "app not

Can't generate signed APK in Android Studio, because proguard-rules.txt is missing

隐身守侯 提交于 2019-12-10 01:10:00
问题 I have a problem with generating signed APK in Android Studio. After fixing all the warnings I am stuck on this one: Error:Execution failed for task ':app:proguardRelease'. java.io.FileNotFoundException: /Users/franek/Documents/Android_Studio_Melange/app/proguard-rules.txt (No such file or directory) I don't want to change minifyEnabled to false, because I want to keep Proguard working. How can I fix this error? A fragment of build.gradle: buildTypes { release { minifyEnabled true

Sign an Android app with Python for Android (Buildozer)

早过忘川 提交于 2019-12-10 00:30:50
问题 i'm using Buildozer to compile Python scripts to Android executable files (.apk). But I've got a problem : I can't run them on Android (I have installed it in a virtual machine). I have found that I need to sign the app to be able to run it. So, how do I sign my application ? I'm using GNU/Linux. Thanks for you help. 回答1: This was answered comprehensively by Ben Rousch at https://groups.google.com/forum/#!topic/kivy-users/5-G7wkbHb_k He said: In general, the steps are: 1 Generate Keystore

Dynamically load apk that uses resources

邮差的信 提交于 2019-12-09 23:10:54
问题 I have service.apk that is using resources to show a notification in the status bar. I am dynamically loading the class that is using these resources but then the resources for the notifications disappear somehow, and I'm getting this error: W/ResourceType( 1142): No known package when getting value for resource number 0x7f020001 W/StatusBarIconView( 1142): Icon not found in 2130837505: 7f020001 W/StatusBarIconView( 1142): No icon for slot android/0x20 W/ActivityManager( 941):

read res folder from an apk

匆匆过客 提交于 2019-12-09 22:04:16
问题 I want to read all the xml files in res folder. I able to read Manifest file using jar AXMLPrinter2.jar Same way i am trying to read xml files in res folder like below, java -jar 'AXMLPrinter2.jar' 'account_list_item.xml' >'account_list_item.txt' but it shows some exception like bellow, java.lang.ArrayIndexOutOfBoundsException: 109 at android.content.res.StringBlock.getShort(StringBlock.java:231) at android.content.res.StringBlock.getString(StringBlock.java:91) at android.content.res