android-manifest

Why does the host specified in network_security_config.xml get merged into the AppLinks section of the Android manifest by the build process?

余生颓废 提交于 2021-01-05 08:58:19
问题 Following on from this question where I had a real issue with AppLinks. The problem was eventually narrowed down to the fact that the build process was dragging the host from the network_security_config.xml into the merged manfest file section specifying the AppLinks. This unexpected host that I used for testing wasn't hosting an assetlinks.json specifying the correct signatures. Details of the answer can be found here. So, why does the build process turn this <intent-filter android

How to solve Android Error type 3?

五迷三道 提交于 2020-12-31 10:51:00
问题 Below manifest formation I am using into my project but whenever I am trying to run my emulator, I am getting below mentioned error. please give me a exact solution for solving the error. Tools informations Android studio Nexus S API 22 (android 5.1.1) My Manifest file formate <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.info.androidapp" > <uses-permission android:name="android.permission.INTERNET" /> <uses

Multiple apk support for Android TV and Phone

北战南征 提交于 2020-12-30 06:47:46
问题 I have a single application in market which has minSDK version 9, and I have also developed a Android TV version of this application with same package name , but API levels are overlapping. So, my question is; how can I upload 2 different apk's (TV & Phone/Tablet) with same package name? The APK for the Android TV should be seen only TV's and Nexus Player etc. Other Apk must be seen for only phones and tablets at the same time. I did read all documentations about multiple APK support but when

Replace default phone APP

那年仲夏 提交于 2020-12-29 04:34:33
问题 I'm trying to replace the default android phone call app. More specifically I want to launch my custom phone call screen everytime a call action is performed. I understand this is possible since Android's API 24 (Version 7.0 - Nougat) but I found no references on how to achieve this. Just to be clear, I do not want to show an overlay layout for the call screen . I want to set my call app as default. I found a similar question for the sms app here: Stackoverflow - replace default sms app. The

Replace default phone APP

北城余情 提交于 2020-12-29 04:31:18
问题 I'm trying to replace the default android phone call app. More specifically I want to launch my custom phone call screen everytime a call action is performed. I understand this is possible since Android's API 24 (Version 7.0 - Nougat) but I found no references on how to achieve this. Just to be clear, I do not want to show an overlay layout for the call screen . I want to set my call app as default. I found a similar question for the sms app here: Stackoverflow - replace default sms app. The

Replace default phone APP

核能气质少年 提交于 2020-12-29 04:31:08
问题 I'm trying to replace the default android phone call app. More specifically I want to launch my custom phone call screen everytime a call action is performed. I understand this is possible since Android's API 24 (Version 7.0 - Nougat) but I found no references on how to achieve this. Just to be clear, I do not want to show an overlay layout for the call screen . I want to set my call app as default. I found a similar question for the sms app here: Stackoverflow - replace default sms app. The

applicationId manifest placeholder for multiple build flavors not working

筅森魡賤 提交于 2020-12-02 06:54:49
问题 I am modifying current android project so it can be installed on same device for multiple flavors and build configs. build.gradle: { // ... defaultConfig { applicationId "com.myapp" manifestPlaceholders = [ manifestApplicationId: "${applicationId}", onesignal_app_id: "xxxx", onesignal_google_project_number: "xxxx" ] // ... } productFlavors { production { applicationId "com.myapp" // ... } dev { applicationId "com.myapp.dev" // ... } // ... } buildTypes { release { // ... } debug {

applicationId manifest placeholder for multiple build flavors not working

 ̄綄美尐妖づ 提交于 2020-12-02 06:53:49
问题 I am modifying current android project so it can be installed on same device for multiple flavors and build configs. build.gradle: { // ... defaultConfig { applicationId "com.myapp" manifestPlaceholders = [ manifestApplicationId: "${applicationId}", onesignal_app_id: "xxxx", onesignal_google_project_number: "xxxx" ] // ... } productFlavors { production { applicationId "com.myapp" // ... } dev { applicationId "com.myapp.dev" // ... } // ... } buildTypes { release { // ... } debug {