287 lines
13 KiB
XML
287 lines
13 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|||
|
|
package="com.sl.house_property">
|
|||
|
|
|
|||
|
|
<!-- Required 一些系统要求的权限,如访问网络等 -->
|
|||
|
|
<!-- <uses-permission android:name="android.permission.READ_CALENDAR" />
|
|||
|
|
<uses-permission android:name="android.permission.WRITE_CALENDAR" /-->>
|
|||
|
|
<uses-permission android:name="com.nifengkeji.xyq.permission.JPUSH_MESSAGE" />
|
|||
|
|
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
|
|||
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|||
|
|
<uses-permission android:name="android.permission.READ_LOGS"
|
|||
|
|
tools:ignore="ProtectedPermissions" />
|
|||
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|||
|
|
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|||
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|||
|
|
<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.MOUNT_FORMAT_FILESYSTEMS"/>
|
|||
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|||
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|||
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|||
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|||
|
|
<!-- <uses-permission android:name="android.permission.READ_CONTACTS" />
|
|||
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />-->
|
|||
|
|
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
|
|||
|
|
<!-- 这个权限用于进行网络定位 -->
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|||
|
|
<!-- 这个权限用于访问GPS定位 -->
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|||
|
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
|||
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|||
|
|
<uses-permission android:name="android.permission.GET_TASKS" />
|
|||
|
|
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
|||
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|||
|
|
<uses-permission android:name="android.permission.RESTART_PACKAGES" />
|
|||
|
|
<uses-permission android:name="android.permission.REORDER_TASKS" />
|
|||
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|||
|
|
|
|||
|
|
<!-- 读写sdcard,storage等等 -->
|
|||
|
|
<!-- // <uses-permission android:name="android.permission.RECORD_AUDIO" />-->
|
|||
|
|
<uses-permission android:name="com.harvic.contentProviderBlog.read" />
|
|||
|
|
<uses-permission android:name="com.harvic.contentProviderBlog.write" />
|
|||
|
|
<!-- shareSdK权限 -->
|
|||
|
|
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
|
|||
|
|
<!-- <uses-permission android:name="android.permission.GET_ACCOUNTS" />-->
|
|||
|
|
|
|||
|
|
<uses-feature
|
|||
|
|
android:name="android.hardware.camera"
|
|||
|
|
android:required="false" />
|
|||
|
|
<uses-feature
|
|||
|
|
android:name="android.hardware.camera.autofocus"
|
|||
|
|
android:required="true" />
|
|||
|
|
<uses-feature android:name="android.hardware.camera.flash" />
|
|||
|
|
|
|||
|
|
<!-- Optional for location -->
|
|||
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <!-- 用于开启 debug 版本的应用在6.0 系统上 层叠窗口权限 -->
|
|||
|
|
|
|||
|
|
|
|||
|
|
<!-- 闪光灯 -->
|
|||
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" />
|
|||
|
|
|
|||
|
|
<!-- 多媒体相关 -->
|
|||
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|||
|
|
|
|||
|
|
<application
|
|||
|
|
android:name="com.sl.house_property.MyApplication"
|
|||
|
|
android:allowBackup="true"
|
|||
|
|
android:icon="@mipmap/ic_launcher"
|
|||
|
|
android:label="@string/app_name"
|
|||
|
|
|
|||
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|||
|
|
android:theme="@style/AppTheme">
|
|||
|
|
<provider
|
|||
|
|
android:name="com.sl.house_property.ImagePickerProvider"
|
|||
|
|
android:authorities="${applicationId}.provider"
|
|||
|
|
android:exported="false"
|
|||
|
|
android:grantUriPermissions="true">
|
|||
|
|
<meta-data
|
|||
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|||
|
|
android:resource="@xml/provider_paths" />
|
|||
|
|
</provider>
|
|||
|
|
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.MainActivity"
|
|||
|
|
android:theme="@android:style/Theme.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.sl.house_property.AliPayTestActivity">
|
|||
|
|
<!--<intent-filter>-->
|
|||
|
|
<!--<action android:name="android.intent.action.MAIN" />-->
|
|||
|
|
<!--<category android:name="android.intent.category.LAUNCHER" />-->
|
|||
|
|
<!--</intent-filter>-->
|
|||
|
|
</activity>
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.MakeErrorActivity"
|
|||
|
|
android:theme="@style/myErrorDialogTheme" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.MainTabActivity"
|
|||
|
|
android:launchMode="standard"
|
|||
|
|
|
|||
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.LogoActivity"
|
|||
|
|
|
|||
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
|
|||
|
|
<activity
|
|||
|
|
android:name="utils.SelectPicDanimicActivity"
|
|||
|
|
android:theme="@style/myDialogThememakephoto"
|
|||
|
|
|
|||
|
|
android:windowBackground="@color/transparent" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.NewsDetailActivity"
|
|||
|
|
|
|||
|
|
android:theme="@style/MyThemeactonbar" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.RegisterAgreementActivity"
|
|||
|
|
|
|||
|
|
android:theme="@style/MyThemeactonbar" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.ScrollingActivity"
|
|||
|
|
|
|||
|
|
android:label="@string/title_activity_scrolling"
|
|||
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.user.MyUserMessage"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
|
|||
|
|
android:theme="@style/MyThemeactonbar" />
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.user.MyWalletActivity"
|
|||
|
|
|
|||
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyMarketShopActivity"
|
|||
|
|
/>
|
|||
|
|
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyBillHistory"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f3.MyFeeBillHistory"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyServiceHistory"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyGuaranteeHistory"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyAuthorizedFamilyHistory"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyPropertyActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyKeyManagement"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyChargeActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyPayActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyshopEditAcitivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyshopModifyAcitivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyBillDetailActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f3.HousekeepingActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.CommodityActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.QRcodeActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.EntranceguardActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.CarGarageActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.EntranceguardControl1Activity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.EntranceguardControl2Activity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.NewsActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.NewlistActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f2.FeeActivity"/>
|
|||
|
|
<activity android:name="com.sl.house_property.f2.ElectricChargeActivity" android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f2.PropertyFeeActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f2.ParkingFeeActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f2.GasFeeActivity"
|
|||
|
|
/>
|
|||
|
|
|
|||
|
|
<activity android:name="com.sl.house_property.f1.AddcararageIttemActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f1.AddAcarActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f1.CarragelistActivity"
|
|||
|
|
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f1.UserdlistActivity"
|
|||
|
|
/>
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.user.MyServiceDetailActivity"
|
|||
|
|
|
|||
|
|
android:label="@string/title_activity_my_service_detail" />
|
|||
|
|
<activity android:name="com.sl.house_property.user.AddAnewGranteeActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.AddAnewFamilyNumberPermissionActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.SettingActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.AboutusActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.AdeviseActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity
|
|||
|
|
android:name="com.sl.house_property.LoginActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.RegisterActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.ForgetPwdActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.ModifyPswdActivity"
|
|||
|
|
android:windowSoftInputMode="adjustPan"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f1.MyCaragradetailActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.user.MyGranteeDetailActivity"
|
|||
|
|
/>
|
|||
|
|
<activity android:name="com.sl.house_property.f1.MyCarUsedHistoryDetailActivity"
|
|||
|
|
/>
|
|||
|
|
|
|||
|
|
|
|||
|
|
<activity
|
|||
|
|
android:name="imageselector.ImageSelectorActivity"
|
|||
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|||
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|||
|
|
/>
|
|||
|
|
<activity
|
|||
|
|
android:name="imageselector.PreviewActivity"
|
|||
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|||
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|||
|
|
/>
|
|||
|
|
<activity
|
|||
|
|
android:name="imageselector.ClipImageActivity"
|
|||
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|||
|
|
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
|
|||
|
|
/>
|
|||
|
|
<activity
|
|||
|
|
android:name="imageselector.FullScreenPreviewActivity"
|
|||
|
|
android:theme="@style/PictureTheme.Main"
|
|||
|
|
/>
|
|||
|
|
<activity
|
|||
|
|
android:name="imageselector.FullScreenOnlinePreviewActivity"
|
|||
|
|
android:theme="@style/PictureTheme.Main"
|
|||
|
|
/>
|
|||
|
|
|
|||
|
|
<activity
|
|||
|
|
android:name="com.alipay.sdk.app.H5PayActivity"
|
|||
|
|
android:configChanges="orientation|keyboardHidden|navigation"
|
|||
|
|
android:exported="false"
|
|||
|
|
android:screenOrientation="behind">
|
|||
|
|
</activity>
|
|||
|
|
<activity
|
|||
|
|
android:name="com.alipay.sdk.auth.AuthActivity"
|
|||
|
|
android:configChanges="orientation|keyboardHidden|navigation"
|
|||
|
|
android:exported="false"
|
|||
|
|
android:screenOrientation="behind">
|
|||
|
|
</activity>
|
|||
|
|
</application>
|
|||
|
|
|
|||
|
|
</manifest>
|