| | |
| | | <uses-permission android:name="android.permission.VIBRATE" /> |
| | | <uses-permission android:name="android.permission.SYSTEM_OVERLAY_WINDOW" /> |
| | | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> |
| | | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| | | |
| | | <!--下面新增权限--> |
| | | <!--8.0--> |
| | | <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/> |
| | | |
| | | <uses-permission android:name="android.permission.BLUETOOTH"/> |
| | | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> |
| | | |
| | | <!-- 如果您当前应用程序有自己的Application,则必须继承com.linglei.sdk.openapi.LLApplication--> |
| | | <!-- 如果没有,请指定application的name属性为com.linglei.sdk.openapi.LLApplication --> |
| | |
| | | android:name="com.linglei.sdklib.open.LLService" |
| | | android:exported="false" /> |
| | | |
| | | <!-- Required FileProvider {您的包名请修改为当前包名}--> |
| | | <provider |
| | | android:name="com.linglei.sdklib.open.LLFileProvider" |
| | | android:authorities="{appId}.llsdk_fileprovider" |
| | | android:exported="false" |
| | | android:grantUriPermissions="true"> |
| | | <meta-data |
| | | android:name="android.support.LLSDK.FILE_PROVIDER_PATHS" |
| | | android:resource="@xml/llsdk_filepaths" /> |
| | | </provider> |
| | | |
| | | <!-- Required --> |
| | | <activity |
| | | android:name="com.linglei.sdklib.permission.PermissionActivity" |
| | | android:configChanges="keyboardHidden|orientation|screenSize" |
| | | android:launchMode="standard" |
| | | android:theme="@style/LLPermission.Theme.Activity" |
| | | android:windowSoftInputMode="stateHidden|stateAlwaysHidden" /> |
| | | |
| | | </application> |
| | | |
| | | </manifest> |