Skip to content

Commit e69f8a6

Browse files
authored
Merge pull request #3 from C0ntrolDev/dev
Beta 1
2 parents d766782 + aa3ed77 commit e69f8a6

File tree

319 files changed

+9518
-2037
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

319 files changed

+9518
-2037
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2023-2024 ControlDev
189+
Copyright 2023-2024 C0ntrolDev
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 46 additions & 2 deletions

android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if (flutterVersionName == null) {
2424

2525
android {
2626
namespace "com.example.spotify_downloader"
27-
compileSdkVersion flutter.compileSdkVersion
27+
compileSdkVersion 34
2828
ndkVersion flutter.ndkVersion
2929

3030
compileOptions {
@@ -42,11 +42,11 @@ android {
4242

4343
defaultConfig {
4444
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
45-
applicationId "com.example.spotify_downloader"
45+
applicationId "com.cdev.spotify_downloader"
4646
// You can update the following values to match your application needs.
4747
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
4848
minSdkVersion 24
49-
targetSdkVersion flutter.targetSdkVersion
49+
targetSdkVersion 34
5050
versionCode flutterVersionCode.toInteger()
5151
versionName flutterVersionName
5252
}
Lines changed: 34 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,43 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2-
<application
3-
android:label="spotify_downloader"
4-
android:name="${applicationName}"
5-
android:icon="@mipmap/ic_launcher">
6-
<activity
7-
android:name=".MainActivity"
8-
android:exported="true"
9-
android:launchMode="singleTop"
10-
android:theme="@style/LaunchTheme"
11-
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
12-
android:hardwareAccelerated="true"
13-
android:windowSoftInputMode="adjustResize">
14-
<!-- Specifies an Android theme to apply to this Activity as soon as
15-
the Android process has started. This theme is visible to the user
16-
while the Flutter UI initializes. After that, this theme continues
17-
to determine the Window background behind the Flutter UI. -->
18-
<meta-data
19-
android:name="io.flutter.embedding.android.NormalTheme"
20-
android:resource="@style/NormalTheme"
21-
/>
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:tools="http://schemas.android.com/tools">
3+
<application android:name="${applicationName}"
4+
android:label="Spotify Downloader"
5+
android:icon="@mipmap/ic_launcher"
6+
android:roundIcon="@mipmap/ic_launcher_round"
7+
android:requestLegacyExternalStorage="true">
8+
<activity android:name=".MainActivity"
9+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
10+
android:exported="true"
11+
android:hardwareAccelerated="true"
12+
android:launchMode="singleTop"
13+
android:theme="@style/LaunchTheme"
14+
android:windowSoftInputMode="adjustResize">
15+
16+
<meta-data android:name="io.flutter.embedding.android.NormalTheme"
17+
android:resource="@style/NormalTheme" />
18+
2219
<intent-filter>
23-
<action android:name="android.intent.action.MAIN"/>
24-
<category android:name="android.intent.category.LAUNCHER"/>
20+
<action android:name="android.intent.action.MAIN" />
21+
<category android:name="android.intent.category.LAUNCHER" />
2522
</intent-filter>
2623
</activity>
27-
<!-- Don't delete the meta-data below.
28-
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
29-
<meta-data
30-
android:name="flutterEmbedding"
31-
android:value="2" />
32-
<activity android:name="com.linusu.flutter_web_auth.CallbackActivity"
33-
android:exported="true">
34-
<intent-filter android:label="flutter_web_auth">
24+
<meta-data android:name="flutterEmbedding"
25+
android:value="2" />
26+
<activity android:name="com.linusu.flutter_web_auth_2.CallbackActivity"
27+
android:exported="true">
28+
<intent-filter android:label="flutter_web_auth_2">
3529
<action android:name="android.intent.action.VIEW" />
3630
<category android:name="android.intent.category.DEFAULT" />
3731
<category android:name="android.intent.category.BROWSABLE" />
38-
<data android:scheme="cd.syd.app" android:host="callback" />
32+
<data android:scheme="com.cdev.spotifydownloader" />
3933
</intent-filter>
4034
</activity>
41-
42-
4335
</application>
44-
45-
<uses-permission android:name="android.permission.INTERNET"/>
46-
</manifest>
36+
<uses-permission android:name="android.permission.INTERNET" />
37+
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
38+
<uses-permission android:name="android.permission.VIBRATE" />
39+
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
40+
<uses-permission android:name="com.google.android.gms.permission.AD_ID" />
41+
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
42+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
43+
</manifest>
12.6 KB
5.29 KB
4.34 KB
5.29 KB
4.34 KB
5.63 KB

0 commit comments

Comments
 (0)