2020-12-29 17:15:24 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-11-22 16:44:18 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2020-12-29 17:15:24 +00:00
|
|
|
|
|
|
|
<application android:allowBackup="true" android:label="@string/app_name">
|
2022-11-22 16:44:18 +00:00
|
|
|
<activity android:name=".MainActivity" android:exported="true">
|
2020-12-29 17:15:24 +00:00
|
|
|
<meta-data android:name="android.app.lib_name" android:value="hello_world" />
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|