简体   繁体   English

钛中 AndroidManifest 中“android:targetSandboxVersion”属性的值无效

[英]Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest in titanium

I am getting below error while pushing app for beta release in google play store.在 Google Play 商店中推送测试版应用程序时出现以下错误。

Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest. AndroidManifest 中“android:targetSandboxVersion”属性的值无效。

I check in my tiapp.xml but didn't found any thing related this.我检查了我的 tiapp.xml 但没有发现任何与此相关的东西。 Any help appreciated.任何帮助表示赞赏。

Invalid value for the 'android:targetSandboxVersion' attribute in the AndroidManifest. AndroidManifest 中“android:targetSandboxVersion”属性的值无效。 If publishing an Instant App, consider using the Android App Bundle to add this attribute correctly.如果发布 Instant App,请考虑使用 Android App Bundle 正确添加此属性。

<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模块

 <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>

I tried to change manually in below file but its override when build android app我尝试在下面的文件中手动更改,但在构建 android 应用程序时覆盖它

Project/titanium/build/android/app/build/intermediates/instant_app_manifest/release/AndroidManifest.xml

Google Play 商店上传错误

Uploading an instant app is currently not supported: https://jira.appcelerator.org/browse/TIMOB-23412当前不支持上传免安装应用: https://jira.appcelerator.org/browse/TIMOB-23412

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Apk上传失败:您的即时应用APK未在其AndroidManifest中声明有效的“ android:targetSandboxVersion”属性 - Apk Upload failed:Your Instant App APKs do not declare a valid 'android:targetSandboxVersion' attribute in their AndroidManifest 什么是AndroidManifest中的android:supportsRtl属性 - What is android:supportsRtl attribute in AndroidManifest 在Titanium上部署应用程序时,在Titanium中无效的“ --android-sdk”值“ C:\\ android-sdk-win” - Invalid “--android-sdk” value “C:\android-sdk-win” in Titanium while deploying app on android mobile android:largescreens的无效属性值语法:=“ true” - Invalid attribute value syntax for android:largescreens: = “true” 文件无效:错误获取“ android:name”属性:该属性不是字符串值 - The file is invalid: ERROR getting 'android:name' attribute: attribute is not a string value Android Studio - 属性 android... 此处不允许 - AndroidManifest.xml - Android Studio - Attribute android… is not allowed here - AndroidManifest.xml android:name 值在 androidmanifest.xml - android:name value in androidmanifest.xml AndroidManifest.xml中的“属性缺少Android名称空间前缀” - “Attribute is missing the Android namespace prefix” in AndroidManifest.xml Titanium ImageView Width属性无法在Android上使用 - Titanium ImageView Width attribute not working Android ID属性在具有Titanium的android设备上返回null - ID attribute returns null on android device with Titanium
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM