2 Star 0 Fork 0

1mf2 / AntStore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
AndroidManifest.xml 13.77 KB
一键复制 编辑 原始数据 按行查看 历史
1mf2 提交于 2016-04-12 09:46 . 修改关于
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.greenant.store"
android:configChanges="orientation"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<application
android:name="com.greenant.store.AntHomeApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/CustomTheme">
<activity
android:name="com.greenant.store.activity.StartupActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.greenant.store.activity.LoginActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity android:name="com.soundcloud.android.crop.CropImageActivity" />
<activity
android:name="com.greenant.store.activity.RegisterActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.ForgetPasswordActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.AboutAppActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar"
android:windowSoftInputMode="adjustUnspecified|stateHidden" >
</activity>
<activity
android:name="com.greenant.store.activity.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
</activity>
<activity
android:name="com.greenant.store.activity.MyGoodsActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.AddGoodsOnlineActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.AddGoodsByhandActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateHidden"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.AddActivity"
android:label="@string/title_activity_add"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.mystore.MyStoreActivity" />
</activity>
<activity
android:name="com.greenant.store.activity.ImageLoadActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
<intent-filter>
<action android:name="android.intent.action.IMAGElOAD" />
</intent-filter>
</activity>
<activity
android:name="com.greenant.store.activity.EditGoodsActivity"
android:label="@string/title_activity_edit_goods"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" />
<activity
android:name="com.greenant.store.activity.GoodsPerStyleActivity"
android:label="@string/title_activity_goods_per_style"
android:screenOrientation="portrait"
android:theme="@style/AppTheme" >
</activity>
<activity
android:name="com.greenant.store.activity.MyOrderActivity"
android:label="@string/title_activity_my_order"
android:theme="@android:style/Theme.Light.NoTitleBar"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.greenant.store.activity.OrderInfoActivity"
android:label="@string/title_activity_order_info"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.greenant.store.activity.OrderWeightActivity"
android:label="@string/title_activity_order_weight"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.greenant.store.activity.MyStoreActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar"
android:windowSoftInputMode="adjustPan" >
</activity>
<activity
android:name="com.greenant.store.activity.CaptureActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.SettingsActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.MyInfoActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.DescFuncActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.SelectMethodActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.MyMsgActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.OrderDetailActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar" >
</activity>
<activity
android:name="com.greenant.store.activity.MyEarningActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<activity
android:name="com.greenant.store.activity.MyIncomeActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity
android:name="com.greenant.store.activity.MyAlipayActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity
android:name="com.greenant.store.activity.MyAlipayChangeAccountActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity
android:name="com.greenant.store.activity.MyAlipayBindAccountActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity
android:name="com.greenant.store.activity.WithdrawListActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity
android:name="com.greenant.store.activity.WithdrawalsApplyActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<activity
android:name="com.greenant.store.activity.OrderDescActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<activity
android:name="com.greenant.store.activity.WeightGoodsActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<activity
android:name="com.greenant.store.activity.DisclaimerActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<activity
android:name="com.greenant.store.activity.EmrecvDetailActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<activity
android:name="com.greenant.store.activity.ExpressManageActivity"
android:label="@string/my_store"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:theme="@android:style/Theme.Light.NoTitleBar"
>
</activity>
<receiver android:name="com.greenant.store.broadcast.MallManagerReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
<action android:name="com.greenantmall.store.MallManagerReceiver" />
</intent-filter>
</receiver>
<service
android:name="com.avos.avoscloud.PushService"
android:exported="true" />
<receiver android:name="com.avos.avoscloud.AVBroadcastReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
</application>
</manifest>
1
https://gitee.com/1mf2/AntStore.git
git@gitee.com:1mf2/AntStore.git
1mf2
AntStore
AntStore
master

搜索帮助