我正在使用 Azure 管道来构建和分发用 React Native 编码的 Android 应用程序。为了自动增加 android 版本的版本号,我尝试使用 android-manifest-version@1 任务。
https://marketplace.visualstudio.com/items?itemName=vs-publisher-473885.motz-mobile-buildtasks
这是我最终使用的任务 -
- task: android-manifest-version@1
inputs:
sourcePath: '$(Build.SourcesDirectory)/android/app/src/main/AndroidManifest.xml'
versionCodeOption: 'buildid'
versionCode: '$(Build.BuildId)'
versionCodeOffset: '1'
versionName:
printFile: true
但是当我运行它时,它给出了以下错误
找不到匹配的密钥
不确定我在这里做错了什么。感谢任何帮助或指导。
根据你的描述,我可以重现同样的问题。要修复该错误,我们需要确保
android:versionCode
和android:versionName="1.0"
的键被替换为AndroidManifest.xml
中的``任务
这是一个示例供您参考。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ms.appcenter.sampleapp.android"
android:versionCode="1"
android:versionName="1.0">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="ms.appcenter.sampleapp.android.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>