我目前正在从build.gradle向./android/app/src/main/AndroidManifest.xml注入变量值
defaultConfig {
...
manifestPlaceholders = [
...
appPackageName: tenant.appPackageName,
]
}
我希望能够将相同的值分别注入到配置文件和调试文件夹中的两个内置清单文件中,例如
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="${appPackageName}"> <-- THIS HERE
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
但我好像想不明白。我确信一定有一种方法可以从build.gradle中做到这一点,但不确定具体在哪里。
1条答案
按热度按时间bfrts1fy1#
我会回答自己的问题: