File tree Expand file tree Collapse file tree 12 files changed +142
-75
lines changed Expand file tree Collapse file tree 12 files changed +142
-75
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "flutterSdkVersion" : " 3.0.3 " ,
2
+ "flutterSdkVersion" : " 3.13.9 " ,
3
3
"flavors" : {}
4
4
}
Original file line number Diff line number Diff line change
1
+ # Miscellaneous
2
+ * .class
3
+ * .log
4
+ * .pyc
5
+ * .swp
1
6
.DS_Store
7
+ .atom /
8
+ .buildlog /
9
+ .history
10
+ .svn /
11
+ migrate_working_dir /
12
+
13
+ # IntelliJ related
14
+ * .iml
15
+ * .ipr
16
+ * .iws
17
+ .idea /
18
+
19
+ # The .vscode folder contains launch configuration and tasks you configure in
20
+ # VS Code which you may wish to be included in version control, so this line
21
+ # is commented out by default.
22
+ # .vscode/
23
+
24
+ # Flutter/Dart/Pub related
25
+ ** /doc /api /
26
+ ** /ios /Flutter /.last_build_id
2
27
.dart_tool /
3
- .fvm /flutter_sdk
28
+ .flutter-plugins
29
+ .flutter-plugins-dependencies
4
30
.packages
31
+ .pub-cache /
5
32
.pub /
6
- /pubspec.lock
7
- build /
33
+ /build /
34
+
35
+ # Symbolication related
36
+ app. * .symbols
37
+
38
+ # Obfuscation related
39
+ app. * .map.json
40
+
41
+ # Android Studio will place build artifacts here
42
+ /android /app /debug
43
+ /android /app /profile
44
+ /android /app /release
Original file line number Diff line number Diff line change 1
- * .iml
2
- .gradle
1
+ gradle-wrapper.jar
2
+ /.gradle
3
+ /captures /
4
+ /gradlew
5
+ /gradlew.bat
3
6
/local.properties
4
- /.idea /workspace.xml
5
- /.idea /libraries
6
- .DS_Store
7
- /build
8
- /captures
7
+ GeneratedPluginRegistrant.java
8
+
9
+ # Remember to never publicly share your keystore.
10
+ # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11
+ key.properties
12
+ ** /* .keystore
13
+ ** /* .jks
Original file line number Diff line number Diff line change @@ -19,30 +19,35 @@ group 'com.nimroddayan.flutternsd'
19
19
version ' 1.0-SNAPSHOT'
20
20
21
21
buildscript {
22
- ext. kotlin_version = ' 1.5.20 '
22
+ ext. kotlin_version = ' 1.7.10 '
23
23
repositories {
24
24
google()
25
- jcenter ()
25
+ mavenCentral ()
26
26
}
27
27
28
28
dependencies {
29
- classpath ' com.android.tools.build:gradle:4.0 .1'
29
+ classpath ' com.android.tools.build:gradle:7.3 .1'
30
30
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
31
31
}
32
32
}
33
33
34
34
rootProject. allprojects {
35
35
repositories {
36
36
google()
37
- jcenter ()
37
+ mavenCentral ()
38
38
}
39
39
}
40
40
41
41
apply plugin : ' com.android.library'
42
42
apply plugin : ' kotlin-android'
43
43
44
44
android {
45
- compileSdkVersion 29
45
+ // Conditional for compatibility with AGP <4.2.
46
+ if (project. android. hasProperty(" namespace" )) {
47
+ namespace ' com.nimroddayan.flutternsd'
48
+ }
49
+
50
+ compileSdkVersion 33
46
51
47
52
sourceSets {
48
53
main. java. srcDirs + = ' src/main/kotlin'
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ distributionBase=GRADLE_USER_HOME
19
19
distributionPath =wrapper/dists
20
20
zipStoreBase =GRADLE_USER_HOME
21
21
zipStorePath =wrapper/dists
22
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.5.1-all .zip
22
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.3-bin .zip
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ apply plugin: 'kotlin-android'
43
43
apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
44
44
45
45
android {
46
- compileSdkVersion 29
46
+ compileSdkVersion 33
47
47
48
48
sourceSets {
49
49
main. java. srcDirs + = ' src/main/kotlin'
Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
buildscript {
19
- ext. kotlin_version = ' 1.4.0 '
19
+ ext. kotlin_version = ' 1.7.10 '
20
20
repositories {
21
21
google()
22
- jcenter ()
22
+ mavenCentral ()
23
23
}
24
24
25
25
dependencies {
26
- classpath ' com.android.tools.build:gradle:4.0 .1'
26
+ classpath ' com.android.tools.build:gradle:7.3 .1'
27
27
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
28
28
}
29
29
}
30
30
31
31
allprojects {
32
32
repositories {
33
33
google()
34
- jcenter ()
34
+ mavenCentral ()
35
35
}
36
36
}
37
37
@@ -43,6 +43,6 @@ subprojects {
43
43
project. evaluationDependsOn(' :app' )
44
44
}
45
45
46
- task clean ( type : Delete ) {
46
+ tasks . register( " clean " , Delete ) {
47
47
delete rootProject. buildDir
48
48
}
Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ distributionBase=GRADLE_USER_HOME
20
20
distributionPath =wrapper/dists
21
21
zipStoreBase =GRADLE_USER_HOME
22
22
zipStorePath =wrapper/dists
23
- distributionUrl =https\://services.gradle.org/distributions/gradle-6.5.1-all .zip
23
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.3-bin .zip
You can’t perform that action at this time.
0 commit comments