如何为 Instant Apps 组织应用程序 类
How to organize application classes for Instant Apps
我正在尝试开发一个多功能即时应用程序。
我有 query
和 autocomplete
功能模块。
他们的功能模块中有 QueryApplication
和 AutoCompleteApplication
类 用于依赖注入。
app
模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex.app" />
'base' 模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="aia-compat-api-min-version"
android:value="1" />
</application>
</manifest>
query
模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex.query">
<application android:name=".QueryApplication">
<!--simplified-->
</application>
</manifest>
autocomplete
模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex.autocomplete">
<application android:name=".AutoCompleteApplication">
<!--simplified-->
</application>
</manifest>
当我尝试构建时,出现以下错误:
Error:Execution failed for task
':base:processProductionDebugFeatureManifest'.
Manifest merger failed : Attribute application@name value=(net.epictimes.uvindex.query.QueryApplication) from [:query]
AndroidManifest.xml:16:9-68 is also present at [:autocomplete]
AndroidManifest.xml:14:9-82
value=(net.epictimes.uvindex.autocomplete.AutoCompleteApplication).
Suggestion: add 'tools:replace="android:name"' to
element at AndroidManifest.xml:7:5-18:19 to override.
应用模块中的合并清单也显示错误消息。因此,当我在 app
模块的清单中添加 tools:replace
规则时:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="net.epictimes.uvindex.app">
<application
android:name="net.epictimes.uvindex.query.QueryApplication"
tools:replace="android:name" />
</manifest>
它给了我一个类似的错误:
Error:Execution failed for task
':base:processProductionDebugFeatureManifest'.
Manifest merger failed : Attribute application@name value=(net.epictimes.uvindex.query.QueryApplication) from [:query]
AndroidManifest.xml:16:9-68 is also present at [:autocomplete]
AndroidManifest.xml:14:9-82
value=(net.epictimes.uvindex.autocomplete.AutoCompleteApplication).
Suggestion: add 'tools:replace="android:name"' to
element at AndroidManifest.xml:7:5-18:19 to override.
但是这次app、base、query 和autocomplete 模块的Merged Manifests 没有显示任何错误。所以我认为这个错误是针对 instantapp
模块的。
那么,如何为多功能即时应用程序组织应用程序 类?
我们甚至可以为每个功能模块使用单独的应用程序 类 吗?
简而言之,不,不是针对每个功能模块。
它失败了,因为当即时应用程序试图合并其清单时,有多个 android:name(来自查询和自动完成... ).在应用程序模块中添加 tools:replace 仅适用于已安装的应用程序,它不会为即时应用程序的清单解决任何问题。
- 已安装的应用合并了这些清单:app、base、feature+
- 免安装应用合并了这些清单:base、feature+
每个应用只能有一个清单:免安装和已安装。所以manifest合并后也只能指定一个android:name。虽然,即时和安装都可以使用不同的应用程序 classes.
- 仅在您选择的一项功能中声明一个 android:name(该功能将用于免安装应用)并在您的应用模块中使用 tools:replace 声明一个(现在您安装的应用将运行 换一个)。
- 或者,如果您觉得必须为所有功能添加 android:name(包括基础),则必须为所有功能添加 tools:replace(但现在它将默认为基础的申请 class).
- 或者在一个主应用程序 class.
中简单地使用 InstantApps.isInstantApp()
您还可以在以下位置查看如何执行此操作:
我正在尝试开发一个多功能即时应用程序。
我有 query
和 autocomplete
功能模块。
他们的功能模块中有 QueryApplication
和 AutoCompleteApplication
类 用于依赖注入。
app
模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex.app" />
'base' 模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data
android:name="aia-compat-api-min-version"
android:value="1" />
</application>
</manifest>
query
模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex.query">
<application android:name=".QueryApplication">
<!--simplified-->
</application>
</manifest>
autocomplete
模块的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.epictimes.uvindex.autocomplete">
<application android:name=".AutoCompleteApplication">
<!--simplified-->
</application>
</manifest>
当我尝试构建时,出现以下错误:
Error:Execution failed for task ':base:processProductionDebugFeatureManifest'.
Manifest merger failed : Attribute application@name value=(net.epictimes.uvindex.query.QueryApplication) from [:query] AndroidManifest.xml:16:9-68 is also present at [:autocomplete] AndroidManifest.xml:14:9-82 value=(net.epictimes.uvindex.autocomplete.AutoCompleteApplication).
Suggestion: add 'tools:replace="android:name"' to element at AndroidManifest.xml:7:5-18:19 to override.
应用模块中的合并清单也显示错误消息。因此,当我在 app
模块的清单中添加 tools:replace
规则时:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="net.epictimes.uvindex.app">
<application
android:name="net.epictimes.uvindex.query.QueryApplication"
tools:replace="android:name" />
</manifest>
它给了我一个类似的错误:
Error:Execution failed for task ':base:processProductionDebugFeatureManifest'.
Manifest merger failed : Attribute application@name value=(net.epictimes.uvindex.query.QueryApplication) from [:query] AndroidManifest.xml:16:9-68 is also present at [:autocomplete] AndroidManifest.xml:14:9-82 value=(net.epictimes.uvindex.autocomplete.AutoCompleteApplication).
Suggestion: add 'tools:replace="android:name"' to element at AndroidManifest.xml:7:5-18:19 to override.
但是这次app、base、query 和autocomplete 模块的Merged Manifests 没有显示任何错误。所以我认为这个错误是针对 instantapp
模块的。
那么,如何为多功能即时应用程序组织应用程序 类?
我们甚至可以为每个功能模块使用单独的应用程序 类 吗?
简而言之,不,不是针对每个功能模块。
它失败了,因为当即时应用程序试图合并其清单时,有多个 android:name(来自查询和自动完成... ).在应用程序模块中添加 tools:replace 仅适用于已安装的应用程序,它不会为即时应用程序的清单解决任何问题。
- 已安装的应用合并了这些清单:app、base、feature+
- 免安装应用合并了这些清单:base、feature+
每个应用只能有一个清单:免安装和已安装。所以manifest合并后也只能指定一个android:name。虽然,即时和安装都可以使用不同的应用程序 classes.
- 仅在您选择的一项功能中声明一个 android:name(该功能将用于免安装应用)并在您的应用模块中使用 tools:replace 声明一个(现在您安装的应用将运行 换一个)。
- 或者,如果您觉得必须为所有功能添加 android:name(包括基础),则必须为所有功能添加 tools:replace(但现在它将默认为基础的申请 class).
- 或者在一个主应用程序 class. 中简单地使用 InstantApps.isInstantApp()
您还可以在以下位置查看如何执行此操作: