Skip to content

Commit e27e0a1

Browse files
committed
2 parents 9737b79 + d173db1 commit e27e0a1

File tree

26 files changed

+498
-17
lines changed

26 files changed

+498
-17
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
android {
12-
namespace = "com.chunhthanhde.spotify"
12+
namespace = "com.chunhthanhde.spotify_flutter"
1313
compileSdk = flutter.compileSdkVersion
1414
ndkVersion = flutter.ndkVersion
1515

@@ -24,7 +24,7 @@ android {
2424

2525
defaultConfig {
2626
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
27-
applicationId = "com.chunhthanhde.spotify"
27+
applicationId = "com.chunhthanhde.spotify_flutter"
2828
// You can update the following values to match your application needs.
2929
// For more information, see: https://flutter.dev/to/review-gradle-config.
3030
minSdk = 23

android/app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
3+
<uses-permission android:name="android.permission.INTERNET"/>
4+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
5+
6+
27
<application
38
android:label="spotify_with_flutter"
49
android:name="${applicationName}"
5-
android:icon="@mipmap/ic_launcher">
10+
android:icon="@mipmap/ic_launcher"
11+
android:usesCleartextTraffic="true">
612
<activity
713
android:name=".MainActivity"
814
android:exported="true"

android/app/src/main/kotlin/com/chunhthanhde/spotify/MainActivity.kt renamed to android/app/src/main/kotlin/com/chunhthanhde/spotify_flutter/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.chunhthanhde.spotify
1+
package com.chunhthanhde.spotify_flutter
22

33
import io.flutter.embedding.android.FlutterActivity
44

android/build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
buildscript {
2+
ext.kotlin_version = '1.7.10'
3+
repositories {
4+
google()
5+
mavenCentral()
6+
}
7+
8+
dependencies {
9+
// START: FlutterFire Configuration
10+
classpath 'com.google.gms:google-services:4.3.15'
11+
// END: FlutterFire Configuration
12+
classpath 'com.android.tools.build:gradle:7.3.0'
13+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
14+
}
15+
}
16+
117
allprojects {
218
repositories {
319
google()

assets/images/choose_auth_bg.png

137 KB
Loading

assets/images/home_artirst.png

-42.6 KB
Binary file not shown.

assets/images/home_artist.png

-94 KB
Loading

0 commit comments

Comments
 (0)