Titanium 中 AndroidManifest 中 'android:targetSandboxVersion' 属性的无效值
Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest in titanium
我在 google Play 商店中推送测试版应用程序时出现以下错误。
Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest.
我查看了我的 tiapp.xml,但没有发现任何与此相关的内容。任何帮助表示赞赏。
Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest. If publishing an Instant App, consider using the Android App Bundle to add this attribute correctly.
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="381">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="29"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true"/>
<application android:theme="@style/Theme.connectMobileTheme">
<activity android:name=".ConnectActivity" android:label="@string/app_name" android:theme="@style/Theme.Titanium" android:configChanges="keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="companyname"/>
</intent-filter>
</activity>
<uses-library android:name="org.apache.http.legacy" android:required="true"/>
</application>
</manifest>
</android>
模块
<modules>
<module platform="iphone" version="1.3.0">ti.imagefactory</module>
<module platform="android" version="4.0.0">ti.imagefactory</module>
<module platform="iphone" version="2.2.1">bencoding.securely</module>
<module platform="android" version="3.1.2">bencoding.securely</module>
</modules>
我试图在下面的文件中手动更改,但在构建 android 应用程序
时它被覆盖了
Project/titanium/build/android/app/build/intermediates/instant_app_manifest/release/AndroidManifest.xml
目前不支持上传免安装应用程序:https://jira.appcelerator.org/browse/TIMOB-23412
我在 google Play 商店中推送测试版应用程序时出现以下错误。
Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest.
我查看了我的 tiapp.xml,但没有发现任何与此相关的内容。任何帮助表示赞赏。
Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest. If publishing an Instant App, consider using the Android App Bundle to add this attribute correctly.
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="381">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="29"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true"/>
<application android:theme="@style/Theme.connectMobileTheme">
<activity android:name=".ConnectActivity" android:label="@string/app_name" android:theme="@style/Theme.Titanium" android:configChanges="keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="companyname"/>
</intent-filter>
</activity>
<uses-library android:name="org.apache.http.legacy" android:required="true"/>
</application>
</manifest>
</android>
模块
<modules>
<module platform="iphone" version="1.3.0">ti.imagefactory</module>
<module platform="android" version="4.0.0">ti.imagefactory</module>
<module platform="iphone" version="2.2.1">bencoding.securely</module>
<module platform="android" version="3.1.2">bencoding.securely</module>
</modules>
我试图在下面的文件中手动更改,但在构建 android 应用程序
时它被覆盖了Project/titanium/build/android/app/build/intermediates/instant_app_manifest/release/AndroidManifest.xml
目前不支持上传免安装应用程序:https://jira.appcelerator.org/browse/TIMOB-23412