apk

I can not create an apk on my eclipse

若如初见. 提交于 2019-12-25 11:33:51
问题 So I am trying to create an apk via eclipse for a small app I created (one of my first) but after going through several tutorials I can't find the android option which is suppose to present in Export. My Eclipse version is Mars.2 Release (4.5.2). I am using Eclipse IDE for Java Developers. 回答1: You have to install the sdk first. It's not included in eclipse. How to setup eclipse for android app development A personal recommendation: Use Android Studio, you will have to get used to it but

How to compile kivy and python files to apk

﹥>﹥吖頭↗ 提交于 2019-12-25 09:23:29
问题 i want to convert my python and kivy files into signed and unsigned apk. i work on windows but for compiling using python for android in ubuntu in vm ware. After installing all necessary modules like kivy, python for android and android studio. when i am compiling it's showing error that sdk not found. is there any option for generating apk in windows or ubuntu or linux. i also heard about buildozer and it also works on windows. please suggest me something on it i'm new to kivy. thanks 1 回答1:

Change /data/local Permissions

烈酒焚心 提交于 2019-12-25 08:18:58
问题 I installed an ICS rom onto my Incredible and discovered that I could no longer run applications through Eclipse to test them. I searched StackOverflow and found an answer to why my problem was happening in this question, but how do I change the permissions of /data/local ? I don't want to mess anything up. This is probably an extremely easy fix, but thank you for the help! 回答1: You must be root, open a terminal emulator and on the first line type su to give you admin rights and hit enter. On

Android package manager only unpacks libxxx.so named libraries

烈酒焚心 提交于 2019-12-25 07:56:40
问题 I've made a jni library that dynamically loads plugins using dlopen, plugin library files have a different naming e.g. zzz_abc.so . eclipse and ant are correctly bundling these files in the apk, but the android packagemanager only unpacks files named libxxx.so , other filename patterns are ignored, perhaps in debug, gdbserver is added and unpacked on my 4.1 phone (but not on 4.4 genymotion emulator). There is something "magic" to control this behavior? 回答1: I've verified and unfortunately the

How to sign android apk without android studio

和自甴很熟 提交于 2019-12-25 06:44:41
问题 I have found many many confusing answers on this one: How do I sign (release/debug) android app without Android Studio (E.g. when signing ionic/cordova/phonegap app)? 回答1: You can Add Key store in Gradle file. android { ... defaultConfig { ... } signingConfigs { release { if (project.hasProperty('MYAPP_RELEASE_STORE_FILE')) { storeFile file(MYAPP_RELEASE_STORE_FILE) storePassword MYAPP_RELEASE_STORE_PASSWORD keyAlias MYAPP_RELEASE_KEY_ALIAS keyPassword MYAPP_RELEASE_KEY_PASSWORD } } }

multiple Play Store Accounts sharing same android signing key

寵の児 提交于 2019-12-25 05:32:59
问题 as the title says, can a signed android apk be published/signed by multiple google play accounts? we have a possible new requirement where we will have to remove the existing play account and create a new one but we are keeping the same signed keys for our apps and do not want to upload a whole new app with new signing key. Is this possible? 回答1: You can add additional users to your applications and give them whatever permissions you feel are appropriate. To do so, follow the Add Developer

No internet access in signed APK

杀马特。学长 韩版系。学妹 提交于 2019-12-25 04:45:42
问题 I was working on an app that was working fine in the Debug build version and then I created a signed APK using keystore , and then with Android Studio --> Generate SIgned APK. When I install the signed APK manually by downloading on to my phone, it asks for all permissions including internet access. However post installation, app starts but none of the server calls / API calls are working. The phone has internet connection though (webpages open up in browser) My android manifest is : <?xml

To give password to the apk

我的未来我决定 提交于 2019-12-25 03:00:22
问题 I have developed one application and made the apk of that app.Now I want to give password to that so that when anyone will try to install the application it will ask for the password. 回答1: You can't protect apk files that way, however you can add a screen to your application that "validates" the install, this is where they should enter a password which should be entered just once and remember this. 回答2: You cannot simply do this. Are you trying to licence your software? If so, create a Splash

“flutter build apk” for release in Flutter get error

回眸只為那壹抹淺笑 提交于 2019-12-24 20:05:04
问题 I want to build apk release on Flutter, I already follow and implemented this link: https://flutter.dev/docs/deployment/android for pro-guards, key, etc. But when I run " flutter build apk ". I get the error. https://pastebin.com/mEjkvQxP Can someone help me? 回答1: You need to migrate your project to AndroidX. Check this guideline to migrate to AndroidX. https://flutter.dev/docs/development/packages-and-plugins/androidx-compatibility#how-to-migrate-a-flutter-app-to-androidx 来源: https:/

How to update an android app If you lose keystore file?

醉酒当歌 提交于 2019-12-24 19:40:50
问题 I am new to the Android ecosystem. To give you a more context about my problem, here are some facts. I've received access to a google developer team, who released time ago an application. Now, I want to release a new version of that. The new version is a completely new app. Have the same functionality, but is developed by somebody else. All setup is made correctly, including the bundle id of the app. Now, the problem is related to APK signing. From what I understand I should use something