Sha256: 5140b937f76ebfe17eee444c8361c17d0e09dc3896dcf5d09911b90a69bb253f
Contents?: true
Size: 1.08 KB
Versions: 38
Compression:
Stored size: 1.08 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"> <uses-permission android:name="android.permission.INTERNET"/> <application android:allowBackup="false" android:enableOnBackInvokedCallback="true" android:icon="@mipmap/ic_launcher" android:label="<%= name %>" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.<%= name %>" tools:targetApi="31"> <activity android:name="<%= package_name %>.main.MainActivity" android:launchMode="singleInstance" android:theme="@style/Theme.<%= name %>" android:windowSoftInputMode="adjustResize" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> </application> </manifest>
Version data entries
38 entries across 19 versions & 1 rubygems