Skip to content
Snippets Groups Projects

Resolve "Fix internet permission"

Merged Benoît Harrault requested to merge 5-fix-internet-permission into master
5 files
+ 16
13
Compare changes
  • Side-by-side
  • Inline
Files
5
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.benoitharrault.scrobbles">
package="org.benoitharrault.scrobbles">
<application
<uses-permission android:name="android.permission.INTERNET" />
 
<application
android:label="scrobbles"
android:label="scrobbles"
android:icon="@mipmap/ic_launcher">
android:icon="@mipmap/ic_launcher">
<activity
<activity
@@ -11,20 +12,20 @@
@@ -11,20 +12,20 @@
android:hardwareAccelerated="true"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
android:windowSoftInputMode="adjustResize">
<meta-data
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
android:resource="@style/NormalTheme"
/>
/>
<meta-data
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
android:resource="@drawable/launch_background"
/>
/>
<intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</intent-filter>
</activity>
</activity>
<meta-data
<meta-data
android:name="flutterEmbedding"
android:name="flutterEmbedding"
android:value="2" />
android:value="2" />
</application>
</application>
</manifest>
</manifest>
 
\ No newline at end of file
Loading