apk

Terminal can't run apktool [closed]

﹥>﹥吖頭↗ 提交于 2019-12-22 19:25:44
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I am using macOSX, and trying to extract all the files in a APK file, I've extracted it with zip and unzip. Used dex2jar to extract classes.dex to jar file and decompiled it. Now when I am in my last step, using APKtool to decode the apk file, however, it shows "-bash: apktool: command not found " eventhough I

Android: Are raw resources stored locally on the filesystem?

拈花ヽ惹草 提交于 2019-12-22 18:47:08
问题 I am analyzing an APK, and see a set of .txt resources in the /res/raw/ directory of the application. After installing the application on an emulator, I would expect to see those same files in the /data/data/[app]/files directory, but they do not seem to exist. Where are the raw resources stored? Are raw resources generated at application runtime somewhere else on the filesystem? Or when they are accessed, is it dynamically from the local .apk file? Thanks. 回答1: Raw resources (and really, all

How to use proguard in cordova android App

孤街醉人 提交于 2019-12-22 17:41:15
问题 I have a finished cordova project and i want to use proguard inorder to prevent others from reverse engineering the APK.But i have trouble doing this. In http://developer.android.com/tools/help/proguard.html It says that "When you create an Android project, a proguard.cfg file is automatically generated in the root directory of the project. " But i cannot find a such file. So how do i apply proguard to my app? Thank you 回答1: You need to uncomment below lines from your project.properties file

Android can't open file

隐身守侯 提交于 2019-12-22 17:14:32
问题 I'm trying to download an apk file from server via DownloadManager: dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE); DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url)); request.setMimeType("application/vnd.android.package-archive"); request.allowScanningByMediaScanner(); enqueue = dm.enqueue(request); When the apk is downloaded and I press it I'm getting "can't open file message", But if I download that apk via Browser instead of DownloadManger : Intent

How to know the number of beta users of my app?

北城以北 提交于 2019-12-22 13:11:39
问题 Google Play Developer Console allows developers to upload a beta APK, and invite a Google Group to use it. How to know how many users are using my beta? 回答1: The Google Play Developer Console has changed a lot since the original answer. If you are using Open Beta Testing then go to: Release Management / App Releases / Manage Beta and you will see something like this: Note: if the number of testers is not showing, this might be because the number has not yet reached a certain threshold. This

How can I auto install apk on android without market NOT system app

醉酒当歌 提交于 2019-12-22 12:43:18
问题 I get apk in server. and I try File apkFile = new File("/sdcard/Download/openapk.apk"); Uri apkUri = Uri.fromFile(apkFile); Intent webIntent = new Intent(Intent.ACTION_VIEW); webIntent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive"); webIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(webIntent); this code. after showing under picture. this code is when I click install button. start install. but I want auto install .and apk execution perhaps

Android Studio apk 打包

假如想象 提交于 2019-12-22 12:32:22
1.Build -> Generate Signed APK...,打开如下窗口 2.假设这里没有打过apk包,点击Create new,窗口如下 这里只要输入几个必要项 Key store path(生产key文件的保存路径 ) Key store password(key 存储密码) Key alias(key别名) Key password(key密码) 可以输入机构或个人名字 点击OK,点击finish,apk包就生成好了 如果您愿意花几块钱请我喝杯茶的话,可以用手机扫描下方的二维码,通过 支付宝 捐赠。我会努力写出更好的文章。 (捐赠不显示捐赠者的个人信息,如需要,请注明您的联系方式) Thank you for your kindly donation!! 如果您愿意花几块钱请我喝杯茶的话,可以用手机扫描下方的二维码,通过 支付宝 捐赠。我会努力写出更好的文章。 (捐赠不显示捐赠者的个人信息,如需要,请注明您的联系方式) Thank you for your kindly donation!! 来源: https://www.cnblogs.com/qiaoyanlin/p/6904843.html

Android - Change package name of live application

孤街浪徒 提交于 2019-12-22 10:46:14
问题 I have one application which is already live on google play named 'Moodlytics'. https://play.google.com/store/apps/details?id=AnantApps.Moodlytics&hl=en Currently its package name is 'AnantApps.Moodlytics'. (I know its not good practice to use capital letters for package name) Now I am going to give an update to my application. So my question is : Can I use 'anantApps.moodlytics' (all with small letters) as package name instead of the original one? Will current live application will be

Run Android apk in Device without User interaction

流过昼夜 提交于 2019-12-22 10:29:53
问题 I need to know how it is possible - After installing apk in my device via adb command, I want to run the app automatically. No user interaction will be used to run and navigate screens. The installed app will be run and navigate from one screen to another automatically. But all screen should be reached. I don't know how it is possible? Let me share an example. Say, my app has SignIn and SignUp features. After installing the apk in device, I want the app will execute SignIn or SignUp code

Reading JPG into BitmapData in ActionScript 3 (JPG is inside APK file)

坚强是说给别人听的谎言 提交于 2019-12-22 09:49:00
问题 I'm using Adobe AIR to make APK file for my Android phone. Inside the APK package there is a SWF file and in the same folder as the SWF file there is a subfolder named "images", which contains image.jpg. I'm trying to read that image.jpg into the program at runtime but can't get the location of it (the program doesn't seem to find it. Here's what I'm trying: var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete); loader.load(new URLRequest(