55 lines
1.7 KiB
XML
55 lines
1.7 KiB
XML
<?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:name=".KeyBoardApplication"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/logo"
|
|
android:label="@string/app_name"
|
|
android:largeHeap="true"
|
|
android:roundIcon="@mipmap/logo"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Keyboard"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".HomeActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".tool.MyService"
|
|
android:exported="true"
|
|
android:permission="android.permission.BIND_INPUT_METHOD">
|
|
<intent-filter>
|
|
<action android:name="android.view.InputMethod" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.view.im"
|
|
android:resource="@xml/im" />
|
|
</service>
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="false"></activity>
|
|
<activity
|
|
android:name=".PreviewActivity"
|
|
android:exported="false" />
|
|
|
|
<activity android:name=".SettingActivity"
|
|
android:exported="false"/>
|
|
|
|
|
|
</application>
|
|
|
|
</manifest> |