Skip to content

Instantly share code, notes, and snippets.

@freedive-cebu30
Last active May 24, 2020 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freedive-cebu30/b584954cbd188d9a4f85da9af345ff11 to your computer and use it in GitHub Desktop.
Save freedive-cebu30/b584954cbd188d9a4f85da9af345ff11 to your computer and use it in GitHub Desktop.
admob_2
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.joji.phexchangestore">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<application
android:name="io.flutter.app.FlutterApplication"
android:label="Exchange Shop"
android:icon="@mipmap/ic_launcher">
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-1111154179~81111475"/>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyAdxxxxxxxxx6GhEiP8L"/>
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment