android-manifest

Android permissions categories and DELETE_PACKAGES and INSTALL_PACKAGES permissions

走远了吗. 提交于 2020-01-15 07:03:56
问题 I have an application that requires the DELETE_PACKAGES and INSTALL_PACKAGES permissions. The app is NOT being distributed through the market and requires "unknown sources" to be enabled. When I install this application the install page presents the user with a list of permission categories that include the categories: Your location Network communication Storage Services that cost you money Phone Calls Are the permissions DELETE_PACKAGES and INSTALL_PACKAGES included in one of these

Issue when using manifestmerger in release mode

烂漫一生 提交于 2020-01-15 03:08:07
问题 In the last Android SDK Tools, you can merge AndroidManifest from librairies using the manifestmerger.enabled property : Build System Added automatic merging of library project manifest files into the including project's manifest. Enable this feature with the manifestmerger.enabled property. It works great...but only in debug mode ! Indeed, when i release my app in Eclipse using 'right click on projet' > 'Export...' > 'Export Android Application', the generated AndroidManifest.xml contained

no manifest. jar is unsigned. (signatures missing or not parsable)

◇◆丶佛笑我妖孽 提交于 2020-01-14 13:05:47
问题 When I sign my android app using keytool , it gives above mentioned error. no manifest. jar is unsigned. (signatures missing or not parsable) I have created keystore everything. What would be the reason? Any manifest error? 回答1: I just received this same issue myself and it occurred when I tried to run jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore from outside of the directory of my ionic project. When I ran it from the root of the ionic project, it worked. Then I moved the

no manifest. jar is unsigned. (signatures missing or not parsable)

ぐ巨炮叔叔 提交于 2020-01-14 13:05:28
问题 When I sign my android app using keytool , it gives above mentioned error. no manifest. jar is unsigned. (signatures missing or not parsable) I have created keystore everything. What would be the reason? Any manifest error? 回答1: I just received this same issue myself and it occurred when I tried to run jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore from outside of the directory of my ionic project. When I ran it from the root of the ionic project, it worked. Then I moved the

no manifest. jar is unsigned. (signatures missing or not parsable)

时光怂恿深爱的人放手 提交于 2020-01-14 13:05:07
问题 When I sign my android app using keytool , it gives above mentioned error. no manifest. jar is unsigned. (signatures missing or not parsable) I have created keystore everything. What would be the reason? Any manifest error? 回答1: I just received this same issue myself and it occurred when I tried to run jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore from outside of the directory of my ionic project. When I ran it from the root of the ionic project, it worked. Then I moved the

On checking for permissions dynamically in android apps

假如想象 提交于 2020-01-13 18:58:37
问题 Following up on my previous question on android permissions enforcement at runtime, I found that there are many different ways in android which an app can verify the permissions possessed by the calling (client) app. This includes calls like checkCallingPermission, checkCallingOrSelfPermission, checkCallingUriPermission, checkCallingOrSelfUriPermission, checkPermission, checkUriPermission. As far as I have gone through the android documentation, I am able to find only these calls pertaining

Importing Urban Airship in Android Studio gives compile issues?

China☆狼群 提交于 2020-01-13 13:01:08
问题 I'm new to Android Studio and i want to implement Urban Airship in one of my projects. I followed the example on their website with the .aar file and I ended up getting this error. Error: [/Users/AndroidstudioProjects/MyApplication/app/build/intermediates/exploded-aar/com.urbanairship/urbanairship-lib/5.1.0/AndroidManifest.xml:8] Invalid instruction 'overrideLibrary', valid instructions are : REMOVE,REPLACE,STRICT Correct me if I'm wrong but doesn't this mean that they have issues in their

Importing Urban Airship in Android Studio gives compile issues?

ⅰ亾dé卋堺 提交于 2020-01-13 13:01:08
问题 I'm new to Android Studio and i want to implement Urban Airship in one of my projects. I followed the example on their website with the .aar file and I ended up getting this error. Error: [/Users/AndroidstudioProjects/MyApplication/app/build/intermediates/exploded-aar/com.urbanairship/urbanairship-lib/5.1.0/AndroidManifest.xml:8] Invalid instruction 'overrideLibrary', valid instructions are : REMOVE,REPLACE,STRICT Correct me if I'm wrong but doesn't this mean that they have issues in their

Android custom categories

﹥>﹥吖頭↗ 提交于 2020-01-13 06:28:47
问题 I have a view as a main screen of the application which contains the available application's actions as icon+text pairs ( desktop like). I want to find out programatically what are the activities defined ONLY in my AndroidManifest.xml Suppose I have : < activity android:name="example.mainActivity" android:label="mainActivity"> < intent-filter> < action android:name="android.intent.action.MAIN" /> < category android:name="android.intent.category.LAUNCHER" /> < /intent-filter> < /activity> <

Android custom categories

喜夏-厌秋 提交于 2020-01-13 06:27:08
问题 I have a view as a main screen of the application which contains the available application's actions as icon+text pairs ( desktop like). I want to find out programatically what are the activities defined ONLY in my AndroidManifest.xml Suppose I have : < activity android:name="example.mainActivity" android:label="mainActivity"> < intent-filter> < action android:name="android.intent.action.MAIN" /> < category android:name="android.intent.category.LAUNCHER" /> < /intent-filter> < /activity> <