Created
February 20, 2016 17:54
-
-
Save burnix/3416998dfdb035b7e93e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="be.motti.tort" | |
android:installLocation="preferExternal"> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.WAKE_LOCK" /> | |
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> | |
<uses-permission android:name="android.permission.VIBRATE"/> | |
<uses-permission android:name="com.android.vending.CHECK_LICENSE" /> | |
<uses-permission android:name="android.permission.GET_ACCOUNTS" /> | |
<permission | |
android:name="${applicationId}.permission.C2D_MESSAGE" | |
android:protectionLevel="signature" /> | |
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" /> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:supportsRtl="true" | |
android:theme="@style/AppTheme"> | |
<activity | |
android:name="be.motti.tort.MainActivity" | |
android:label="@string/app_name" | |
android:screenOrientation="portrait" | |
android:theme="@style/AppTheme.NoActionBar"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
<meta-data | |
android:name="com.google.android.gms.version" | |
android:value="@integer/google_play_services_version" /> | |
</activity> | |
<activity | |
android:name="be.motti.tort.FoodAppearance" | |
android:screenOrientation="portrait" /> | |
/* GCM*/ | |
<receiver | |
android:name="be.motti.tort.GcmBroadcastReceiver" | |
android:permission="com.google.android.c2dm.permission.SEND"> | |
<intent-filter> | |
<action android:name="com.google.android.c2dm.intent.RECEIVE" /> | |
<action android:name="com.google.android.c2dm.intent.REGISTRATION" /> | |
<category android:name="${applicationId}" /> | |
</intent-filter> | |
</receiver> | |
<service android:name="be.motti.tort.GcmIntentService" /> | |
<!-- Optionally, register AnalyticsReceiver and AnalyticsService to support background | |
dispatching on non-Google Play devices --> | |
<receiver android:name="com.google.android.gms.analytics.AnalyticsReceiver" | |
android:enabled="true" | |
android:exported="false"> | |
<intent-filter> | |
<action android:name="com.google.android.gms.analytics.ANALYTICS_DISPATCH" /> | |
</intent-filter> | |
</receiver> | |
<service android:name="com.google.android.gms.analytics.AnalyticsService" | |
android:enabled="true" | |
android:exported="false"/> | |
<!-- Optionally, register CampaignTrackingReceiver and CampaignTrackingService to enable | |
installation campaign reporting --> | |
<receiver android:name="com.google.android.gms.analytics.CampaignTrackingReceiver" | |
android:exported="false"> | |
<intent-filter> | |
<action android:name="com.android.vending.INSTALL_REFERRER" /> | |
</intent-filter> | |
</receiver> | |
<service android:name="com.google.android.gms.analytics.CampaignTrackingService" /> | |
/* APPODEAL */ | |
<meta-data android:name="com.appodeal.framework" android:value="android" /> | |
<receiver android:name="com.appodeal.ads.AppodealPackageAddedReceiver" android:exported="true" android:enabled="true"> | |
<intent-filter> | |
<action android:name="android.intent.action.PACKAGE_ADDED" /> | |
<data android:scheme="package" /> | |
</intent-filter> | |
</receiver> | |
<activity android:name="com.appodeal.ads.InterstitialActivity" | |
android:configChanges="orientation|screenSize" | |
android:theme="@android:style/Theme.Translucent.NoTitleBar" /> | |
<activity android:name="com.appodeal.ads.VideoActivity" | |
android:configChanges="orientation|screenSize" | |
android:theme="@android:style/Theme.Translucent.NoTitleBar" /> | |
<activity android:name="com.appodeal.ads.LoaderActivity" | |
android:configChanges="orientation|screenSize" | |
android:theme="@android:style/Theme.Translucent.NoTitleBar" /> | |
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> | |
<activity android:name="com.google.android.gms.ads.AdActivity" | |
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" | |
android:theme="@android:style/Theme.Translucent" /> | |
<activity android:name="com.chartboost.sdk.CBImpressionActivity" android:excludeFromRecents="true" | |
android:hardwareAccelerated="true" android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" | |
android:configChanges="keyboardHidden|orientation|screenSize" /> | |
<activity android:name="com.applovin.adview.AppLovinInterstitialActivity" | |
android:theme="@android:style/Theme.Translucent" /> | |
<activity android:name="com.mopub.mobileads.MoPubActivity" | |
android:configChanges="keyboardHidden|orientation|screenSize" | |
android:theme="@android:style/Theme.Translucent" /> | |
<activity android:name="com.mopub.common.MoPubBrowser" | |
android:configChanges="keyboardHidden|orientation|screenSize" /> | |
<activity android:name="com.mopub.mobileads.MraidActivity" | |
android:configChanges="keyboardHidden|orientation|screenSize" /> | |
<activity android:name="com.mopub.mobileads.MraidVideoPlayerActivity" | |
android:configChanges="keyboardHidden|orientation|screenSize" /> | |
<activity android:name="org.nexage.sourcekit.mraid.MRAIDBrowser" | |
android:configChanges="orientation|keyboard|keyboardHidden|screenSize" | |
android:theme="@android:style/Theme.Translucent" /> | |
<activity android:name="com.amazon.device.ads.AdActivity" android:configChanges="keyboardHidden|orientation|screenSize"/> | |
<activity android:name="ru.mail.android.mytarget.ads.MyTargetActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/> | |
<activity android:name="org.nexage.sourcekit.vast.activity.VASTActivity" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" /> | |
<activity android:name="org.nexage.sourcekit.vast.activity.VPAIDActivity" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" /> | |
<activity android:name="com.appodeal.ads.networks.SpotXActivity" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/> | |
<!--suppress AndroidDomInspection --> | |
<activity android:name="com.facebook.ads.InterstitialActivity" android:configChanges="keyboardHidden|orientation|screenSize" /> | |
<activity android:name="com.unity3d.ads.android.view.UnityAdsFullscreenActivity" | |
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:hardwareAccelerated="true" /> | |
<activity android:name="com.unity3d.ads.android2.view.UnityAdsFullscreenActivity" | |
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:hardwareAccelerated="true" /> | |
<activity android:name="com.jirbo.adcolony.AdColonyOverlay" | |
android:configChanges="keyboardHidden|orientation|screenSize" | |
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" /> | |
<activity android:name="com.jirbo.adcolony.AdColonyFullscreen" | |
android:configChanges="keyboardHidden|orientation|screenSize" | |
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" /> | |
<activity android:name="com.jirbo.adcolony.AdColonyBrowser" | |
android:configChanges="keyboardHidden|orientation|screenSize" | |
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" /> | |
<activity android:name="com.vungle.publisher.FullScreenAdActivity" | |
android:configChanges="keyboardHidden|orientation|screenSize" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/> | |
<activity android:name="com.startapp.android.publish.list3d.List3DActivity" | |
android:theme="@android:style/Theme" /> | |
<!--suppress AndroidDomInspection --> | |
<activity android:name="com.startapp.android.publish.OverlayActivity" | |
android:theme="@android:style/Theme.Translucent" | |
android:configChanges="orientation|keyboardHidden|screenSize" /> | |
<!--suppress AndroidDomInspection --> | |
<activity android:name="com.startapp.android.publish.FullScreenActivity" | |
android:theme="@android:style/Theme" | |
android:configChanges="orientation|keyboardHidden|screenSize" /> | |
<service android:name="com.yandex.metrica.MetricaService" android:enabled="true" | |
android:exported="true" android:process=":Metrica"> | |
<intent-filter> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<action android:name="com.yandex.metrica.IMetricaService" /> | |
<data android:scheme="metrica" /> | |
</intent-filter> | |
<meta-data android:name="metrica:api:level" android:value="39" /> | |
</service> | |
<receiver android:name="com.yandex.metrica.MetricaEventHandler" | |
android:enabled="true" android:exported="true"> | |
<intent-filter> | |
<action android:name="com.android.vending.INSTALL_REFERRER" /> | |
</intent-filter> | |
</receiver> | |
<!--suppress AndroidDomInspection --> | |
<activity android:name="com.yandex.mobile.ads.AdActivity" | |
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" /> | |
<activity android:name="com.inmobi.rendering.InMobiAdActivity" | |
android:configChanges="keyboardHidden|orientation|keyboard|smallestScreenSize|screenSize" | |
android:theme="@android:style/Theme.Translucent.NoTitleBar" android:hardwareAccelerated="true" /> | |
<receiver android:name="com.inmobi.commons.core.utilities.uid.ImIdShareBroadCastReceiver" | |
android:enabled="true" android:exported="true" > | |
<intent-filter> | |
<action android:name="com.inmobi.share.id" /> | |
</intent-filter> | |
</receiver> | |
<service android:enabled="true" android:name="com.inmobi.signals.activityrecognition.ActivityRecognitionManager" /> | |
<!--suppress AndroidDomInspection --> | |
<activity android:name="com.flurry.android.FlurryFullscreenTakeoverActivity" | |
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" /> | |
<meta-data | |
android:name="io.fabric.ApiKey" | |
android:value="9e450429c8bb12896206388d0b20f295a5fb770a" /> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment