Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 7.02 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.tct.weather.bb" platformBuildVersionCode="26" platformBuildVersionName="8.0.0">
  2.     <uses-permission android:name="android.permission.INTERNET"/>
  3.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  4.     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
  5.     <uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>
  6.     <uses-permission android:name="android.permission.BROADCAST_STICKY"/>
  7.     <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
  8.     <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
  9.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
  10.     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
  11.     <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
  12.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  13.     <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
  14.     <uses-permission android:name="android.permission.GET_TASKS"/>
  15.     <application android:allowBackup="true" android:icon="@drawable/weather_icon" android:label="@string/app_name" android:name="com.tct.weather.WeatherApplication" android:resizeableActivity="true" android:supportsRtl="true" android:theme="@style/AppTheme"> //add for hawk ads start
  16.         //facebook ad need add this
  17. <activity android:configChanges="keyboardHidden|orientation|screenSize" android:name="com.facebook.ads.InterstitialAdActivity"/> //admob ad need add this
  18. <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version"/> //mopub ad need add this
  19. <activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:launchMode="singleTask" android:name="com.tct.weather.view.NativeAdSpreadSampleActivity" android:theme="@style/MainTheme"/>
  20.         <activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:launchMode="singleTask" android:name="com.tct.weather.InterstitialActivity" android:theme="@style/MainTheme"/> //add for hawk ads start end
  21. <activity android:configChanges="keyboardHidden|orientation|screenSize" android:launchMode="singleTask" android:name="com.tct.weather.MainActivity" android:theme="@style/MainTheme">
  22.             <intent-filter>
  23.                 <action android:name="android.intent.action.MAIN"/>
  24.                 <category android:name="android.intent.category.LAUNCHER"/>
  25.             </intent-filter>
  26.         </activity>
  27.         <activity android:configChanges="keyboardHidden|orientation|screenSize" android:launchMode="singleTop" android:name="com.tct.weather.PermissionActivity" android:theme="@style/MainTheme"/>
  28.         <activity android:configChanges="keyboardHidden|orientation|screenSize" android:launchMode="singleTask" android:name="com.tct.weather.LocateActivity" android:theme="@style/LocateTheme" android:windowSoftInputMode="adjustResize"/>
  29.         <activity android:configChanges="keyboardHidden|orientation|screenSize" android:label="@string/title_activity_settings" android:launchMode="singleTask" android:name="com.tct.weather.SettingsActivity" android:theme="@style/SettingTheme"/>
  30.         <service android:enabled="true" android:name="com.tct.weather.service.UpdateService" android:permission="android.permission.BIND_JOB_SERVICE" android:priority="1000"/>
  31.         <service android:name="com.tct.weather.service.UpdateScheduler" android:permission="android.permission.BIND_JOB_SERVICE"/>
  32.         <receiver android:name="com.tct.weather.receiver.AutoLocateBroadCastReceiver">
  33.             <intent-filter>
  34.                 <action android:name="android.intent.action.LOCALE_CHANGED"/>
  35.                 <action android:name="com.tct.weather.START_AUTO_LOCATION_TASK_ACTION"/>
  36.             </intent-filter>
  37.         </receiver>
  38.         <receiver android:name="com.tct.weather.widget.MiniWeatherWidget">
  39.             <intent-filter>
  40.                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
  41.             </intent-filter>
  42.             <meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget_info"/>
  43.         </receiver>
  44.         <receiver android:name="com.tct.weather.widget.WeatherTimeWidget">
  45.             <intent-filter>
  46.                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
  47.                 <action android:name="android.intent.action.DATE_CHANGED"/>
  48.                 <action android:name="android.intent.action.TIMEZONE_CHANGED"/>
  49.                 <action android:name="android.intent.action.TIME_SET"/>
  50.                 <action android:name="android.intent.action.LOCALE_CHANGED"/>
  51.             </intent-filter>
  52.             <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_weather_time"/>
  53.         </receiver>
  54.         <receiver android:name="com.tct.widget.WeatherWidget">
  55.             <intent-filter>
  56.                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
  57.             </intent-filter>
  58.             <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_info"/>
  59.         </receiver>
  60.         <receiver android:name="com.tct.weather.widget.WeatherTctWidget">
  61.             <intent-filter>
  62.                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
  63.             </intent-filter>
  64.             <meta-data android:name="android.appwidget.provider" android:resource="@xml/tct_weather_widget"/>
  65.         </receiver>
  66.         <receiver android:name="com.tct.weather.receiver.DeviceResetReceiver">
  67.             <intent-filter>
  68.                 <action android:name="tcl.intent.action.LAUNCH_DEVICE_RESET"/>
  69.             </intent-filter>
  70.         </receiver>
  71.         <provider android:authorities="com.tct.provider.weatherinfo" android:exported="true" android:name="com.tct.weather.provider.WeatherContentProvider"/>
  72.         <provider android:authorities="com.tct.weather.provider.WeatherProvider" android:exported="false" android:name="com.tct.weather.provider.WeatherProvider"/>
  73.         <service android:enabled="true" android:name="com.baidu.location.f" android:process=":remote"/>
  74.         <meta-data android:name="com.baidu.lbsapi.API_KEY" android:value="jMqqA2ZaGODB95G2yaZV7ZKRW6vKunCZ"/> Please add a theme if the appwall nee
  75. <activity android:configChanges="keyboard|orientation" android:name="com.mobvista.msdk.shell.MVActivity" android:screenOrientation="portrait" android:theme="@style/AppTheme2"/>
  76.         <activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" android:name="com.google.android.gms.ads.AdActivity" android:theme="@android:style/Theme.Translucent"/>
  77.         <activity android:name="com.google.android.gms.ads.purchase.InAppPurchaseActivity" android:theme="@style/Theme.IAPTheme"/>
  78.     </application>
  79. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement