android-instant-apps

You should have at least one active APK that is mapped to site 'sample.com' via a web 'intent-filter'

一曲冷凌霜 提交于 2019-11-28 04:26:39
问题 Trying to upload instant application but getting this error You should have at least one active APK that is mapped to site 'sample.com' via a web 'intent-filter'. <activity android:name=".ui.InstantSplash" android:screenOrientation="portrait" android:theme="@style/splashScreenTheme"> <meta-data android:name="default-url" android:value="https://sample.com/base-app/salt_one" /> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category

How to access and pass parameters to the modules of an Android Instant App

大城市里の小女人 提交于 2019-11-27 23:54:32
问题 With normal installed apps it's possible to use the technique of Deep Linking in order to not only open a specific application from an URL but also to redirect it to a specific section/function such as a specific Facebook post or specific coordinates on a map. Since I've read that with Instant Apps this won't be possible because links already point to the specific module to download and run, how would it be possible to access not only the said module but also pass it some parameters? For

AAPT2 compile failed: invalid dimen on Android 3.0 Canary 1

最后都变了- 提交于 2019-11-27 17:09:10
I am playing around with Instant Apps for Android.I installed all the correct packages and tired to create new Application with Instant App support (checked the box for Instant App when crating new application). The problem is that I always run into a problem with compile tools. Does anybody else have this problem and was able to find any workaround. My environment: Android Studio 3.0 Canary 1 Compile SDK: 25 Build Tools: "26.0.0 rc2" Gradle plugin:3.0.0-alpha1 Gradle: tried both gradle-4.0-milestone1 and 2 Java 1.8/1.7 OS: tried both Windows 10 and Linux Ubuntu 16.4 LTS The error: Error: java

Digital Assets Link link to my website

ぐ巨炮叔叔 提交于 2019-11-27 15:50:54
I have created an instant app. I uploaded it to my Google Console, and I got this error. The www.kochchy.cz website has not been linked to your application through the Digital Assets Link protocol. Link the application site with Digital Assets Link. [{ "relation": ["delegate_permission/common.handle_all_urls"], "target": { "namespace": "android_app", "package_name": "com.kochchy.instantapptest.app", "sha256_cert_fingerprints":["A4:A6:74:15:F1:3E:38:3F:93:0F:EF:E3:A6:86:8E:7C:25:45:E8:80:5B:5E:35:70:49:20:DB:F8:CB:D4:FC:E0"] } }] Both apks, instant and installable use same id: com.kochchy

How do I integrate Crashlytics with Android Instant Apps?

廉价感情. 提交于 2019-11-27 14:38:56
Does Crashlytics work with Google Play Instant and if so, how do you setup your project correctly? Yes, Crashlytics does work with Android Instant Apps, in fact it is the recommended crash reporting solution at this stage as it has been tested and works fine. For setup: Step 1 Open the build.gradle file in your base feature module and follow the steps on the public docs site to configure Crashlytics as normal. Step 2 At the top level of your base feature module build.gradle file, add the following Crashlytics flag: ... android { ... } crashlytics { instantAppSupport true } ... Step 3 (optional

Google Play Console error - Non-upgradable to installed app

女生的网名这么多〃 提交于 2019-11-27 08:55:48
I developed an instant app apk basing on google tutorials and samples. When I'm trying to start rollout to production, I see one error: Non-upgradable to installed app PROBLEM Some users of this Instant App APKs will not be eligible for any of the APKs in your installed app. RESOLUTION Ensure that the targeting of your Instant App APKs matches the targeting of your APKs. Project structure: There are two scenarios, 1st: base - baseFeature, minSdk 18, targetSdk 26 application project(':apk') feature project(':item-details') item-details feature - minSdk 18, targetSdk 26 api project(':base') ui -

Digital Asset Link verified by Android Studio, but not pass in Google Play Console

吃可爱长大的小学妹 提交于 2019-11-27 08:16:35
问题 I try to publish my Android instant app to Google Play; I link the app, which is named helloinstantapp.instantapp.examples.chrisyttang.org to the domain https://csytang.github.io . It has been verified by Android Studio as you can see in the following image; However, when I try to publish my app into Google Play with Google Play Console, I get the error that "the site csytang.github.io has not been linked through the DAL protocol to your app." Why this happen? 回答1: Did you by any chance

FirebaseApp initialization unsuccessful in Android Instant apps

社会主义新天地 提交于 2019-11-27 05:53:41
问题 I am currently working on an exiting Android application in order to create an Instant apps version. My Android Studio is now split into several modules : the business object module (which is a library) the base -feature- module the moduleA -feature- module the app module (which is a phone/tablet module) the instant module (which is an instant apps module) My instant app module can be compiled and launched on a phone/tablet but each time it crashes due to Firebase issues. I have the following

Digital Assets Link link to my website

邮差的信 提交于 2019-11-26 22:25:40
问题 I have created an instant app. I uploaded it to my Google Console, and I got this error. The www.kochchy.cz website has not been linked to your application through the Digital Assets Link protocol. Link the application site with Digital Assets Link. [{ "relation": ["delegate_permission/common.handle_all_urls"], "target": { "namespace": "android_app", "package_name": "com.kochchy.instantapptest.app", "sha256_cert_fingerprints":["A4:A6:74:15:F1:3E:38:3F:93:0F:EF:E3:A6:86:8E:7C:25:45:E8:80:5B:5E

AAPT2 compile failed: invalid dimen on Android 3.0 Canary 1

此生再无相见时 提交于 2019-11-26 18:53:20
问题 I am playing around with Instant Apps for Android.I installed all the correct packages and tired to create new Application with Instant App support (checked the box for Instant App when crating new application). The problem is that I always run into a problem with compile tools. Does anybody else have this problem and was able to find any workaround. My environment: Android Studio 3.0 Canary 1 Compile SDK: 25 Build Tools: "26.0.0 rc2" Gradle plugin:3.0.0-alpha1 Gradle: tried both gradle-4.0