chore(android): remove deprecated AndroidManifest package id setter

This commit is contained in:
Lucas Nogueira
2023-03-17 15:22:28 -03:00
parent a6fea4644e
commit c88fdbca3a
3 changed files with 3 additions and 7 deletions

View File

@@ -1,5 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="app.tauri">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>

View File

@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{{reverse-domain app.domain}}.{{snake-case app.name}}">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@mipmap/ic_launcher"

View File

@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{{android_package_id}}">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>