40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version='1.0' encoding='utf-8'?>
 | |
| <manifest
 | |
|     xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     package="cc.winboll.studio.regexputils">
 | |
| 
 | |
|     <!-- 拥有完全的网络访问权限 -->
 | |
|     <uses-permission android:name="android.permission.INTERNET"/>
 | |
| 
 | |
|     <application
 | |
|         android:name="cc.winboll.studio.regexputils.App"
 | |
|         android:allowBackup="true"
 | |
|         android:icon="@drawable/ic_regexputils"
 | |
|         android:label="@string/app_name"
 | |
|         android:theme="@style/AppTheme"
 | |
|         android:resizeableActivity="true">
 | |
| 
 | |
|         <activity
 | |
|             android:name=".MainActivity"
 | |
|             android:label="@string/app_name">
 | |
| 
 | |
|             <intent-filter>
 | |
| 
 | |
|                 <action android:name="android.intent.action.MAIN"/>
 | |
| 
 | |
|                 <category android:name="android.intent.category.LAUNCHER"/>
 | |
| 
 | |
|             </intent-filter>
 | |
| 
 | |
|         </activity>
 | |
|         
 | |
|         <activity android:name="cc.winboll.studio.regexputils.develop.CrashHandler$CrashActiviy"/>
 | |
| 
 | |
|         <meta-data
 | |
|             android:name="android.max_aspect"
 | |
|             android:value="4.0"/>
 | |
| 
 | |
|     </application>
 | |
| 
 | |
| </manifest>
 | 
