From f85dc8a9b098580f164c33fca4e8e6412532dbdb Mon Sep 17 00:00:00 2001
From: hch <305670599@qq.com>
Date: 星期四, 24 八月 2023 13:08:59 +0800
Subject: [PATCH] 0312 弹窗
---
SdkProject/app/src/main/AndroidManifest.xml | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/SdkProject/app/src/main/AndroidManifest.xml b/SdkProject/app/src/main/AndroidManifest.xml
index a006a7c..0a0be1d 100644
--- a/SdkProject/app/src/main/AndroidManifest.xml
+++ b/SdkProject/app/src/main/AndroidManifest.xml
@@ -1,13 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.secondworld.universalsdk">
+ xmlns:tools="http://schemas.android.com/tools"
+ package="com.secondworld.demo">
+
+ <uses-permission android:name="android.permission.INTERNET" />
<application
+ android:name="com.secondworld.sdk.BtGameApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
- android:theme="@style/Theme.SdkProject" />
+ tools:replace="android:name">
+ <activity android:name=".MainActivity">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
+ </application>
</manifest>
\ No newline at end of file
--
Gitblit v1.8.0