Skip to content
Snippets Groups Projects
Commit 3d6c47da authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Fix INTERNET android permission

parent d4995f56
No related branches found
No related tags found
1 merge request!3Resolve "Fix internet permission"
Pipeline #4422 passed
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.benoitharrault.scrobbles">
<application
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="scrobbles"
android:icon="@mipmap/ic_launcher">
<activity
......@@ -11,20 +12,20 @@
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
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"
/>
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"/>
<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>
</manifest>
\ No newline at end of file
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.2
app.versionCode=2
app.versionName=0.0.3
app.versionCode=3
Fix Android permission INTERNET
Correction sur permission Android d'accès à internet
......@@ -3,7 +3,7 @@ description: Display scrobbles data and charts
publish_to: 'none'
version: 0.0.2+2
version: 0.0.3+3
environment:
sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment