You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.6 KiB
42 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.yyhan.myapplication"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="15"
|
|
android:targetSdkVersion="26" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:debuggable="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:testOnly="true"
|
|
android:theme="@style/AppTheme" >
|
|
<activity android:name="com.example.yyhan.myapplication.MainActivity" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.example.yyhan.myapplication.userActivity" />
|
|
<activity android:name="com.example.yyhan.myapplication.RegisterActivity" />
|
|
<activity android:name="com.lljjcoder.citylist.CityListSelectActivity" >
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="android.support.VERSION"
|
|
android:value="26.0.0-beta1" />
|
|
|
|
<provider
|
|
android:name="com.android.tools.ir.server.InstantRunContentProvider"
|
|
android:authorities="com.example.yyhan.myapplication.com.android.tools.ir.server.InstantRunContentProvider"
|
|
android:multiprocess="true" />
|
|
</application>
|
|
|
|
</manifest> |