65 lines
2.3 KiB
XML
65 lines
2.3 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.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:name=".CoolKeyboardSkin"
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/logo"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/logo"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".activity.ShowKeyboardActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".activity.WebActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".activity.SplashActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".activity.AllActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".activity.SerachActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".activity.SettingActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".activity.PreviewActivity"
|
|
android:exported="false" />
|
|
<activity
|
|
android:name=".activity.MainActivity"
|
|
android:exported="true" />
|
|
|
|
<service
|
|
android:name=".keyboard.KeyboardService"
|
|
android:enabled="true"
|
|
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>
|
|
</application>
|
|
|
|
</manifest> |