feat(android): initial project setup with Gradle, AndroidManifest, and MainActivity
This commit is contained in:
15
android-app/app/src/main/AndroidManifest.xml
Normal file
15
android-app/app/src/main/AndroidManifest.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="de.harheimertc">
|
||||
|
||||
<application
|
||||
android:label="HarheimerTC"
|
||||
android:icon="@mipmap/ic_launcher">
|
||||
<activity android:name="de.harheimertc.MainActivity"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
||||
Reference in New Issue
Block a user