diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-04-30 09:57:06 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-04-30 09:57:06 -0600 |
commit | a31eb389d59e8a209549e6a8bb7537e93e0ce59e (patch) | |
tree | 39bf3127c933f1dd0866877a9ad114e84d159657 /app/src/main/AndroidManifest.xml | |
download | wiimmfi-watcher-a31eb389d59e8a209549e6a8bb7537e93e0ce59e.tar wiimmfi-watcher-a31eb389d59e8a209549e6a8bb7537e93e0ce59e.tar.gz wiimmfi-watcher-a31eb389d59e8a209549e6a8bb7537e93e0ce59e.tar.bz2 |
initial commit
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..bd605e1 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="com.example.wiimmterfaceandroid"> + + <application + android:allowBackup="true" + android:icon="@mipmap/wiimmterface_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/wiimmterface_launcher" + android:supportsRtl="true" + android:theme="@style/Theme.WiimmterfaceAndroid"> + <activity android:name=".MainActivity"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest>
\ No newline at end of file |