Android之旅

Instant App简介

2017-11-27  本文已影响2020人  h2coder

一、什么是Instant App,使用场景是什么?

image.png

二、Instant App能怎么解决这种问题呢?

[
  {
    "relation": [
      "delegate_permission/common.handle_all_urls"
    ],
    "target": {
      "namespace": "android_app",
      "package_name": "com.myapp.packagename",
      "sha256_cert_fingerprints": [
        "96:14:26:30:CC:E3:C0:9B:05:12:7B:9A:31:9E:88:36:82:12:84:27:4C:52:2F:05:FE:66:A8:AB:B9:F0:F5:F0"
      ]
    }
  }
]
<activity android:name="com.hzh.instant.app.sample.feature.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            //---------- start ----------
            <intent-filter android:order="1">
                <action android:name="android.intent.action.VIEW" />

                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:host="hzh.com"
                    android:pathPattern="/hello"
                    android:scheme="https" />
            </intent-filter>
        </activity>
       //---------- end ----------

三、和原生App的不同

compile 'com.google.android.instantapps:instantapps:1.1.0'
if (InstantApps.isInstantApp(this)) {
       ......//Instant的操作
} else {
       ......//原生的操作
}

四、项目架构

Sample地址

上一篇 下一篇

猜你喜欢

热点阅读