Skip to content

Commit b0b2ea8

Browse files
committed
do migration for build.gradle and settings.gradle
1 parent 7932698 commit b0b2ea8

File tree

2 files changed

+15
-25
lines changed

2 files changed

+15
-25
lines changed

src/serious_python_android/android/build.gradle

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,6 @@ version '0.9.4'
33

44
def python_version = '3.12'
55

6-
buildscript {
7-
repositories {
8-
google()
9-
mavenCentral()
10-
gradlePluginPortal()
11-
}
12-
13-
dependencies {
14-
// The Android Gradle Plugin knows how to build native code with the NDK.
15-
classpath 'com.android.tools.build:gradle:9.1.0'
16-
classpath 'de.undercouch:gradle-download-task:4.1.2'
17-
}
18-
}
19-
20-
rootProject.allprojects {
21-
repositories {
22-
google()
23-
mavenCentral()
24-
}
25-
}
26-
27-
apply plugin: 'com.android.library'
28-
apply plugin: 'de.undercouch.download'
29-
306
android {
317
namespace "com.flet.serious_python_android"
328

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
rootProject.name = 'serious_python_android'
1+
pluginManagement {
2+
repositories {
3+
google()
4+
mavenCentral()
5+
gradlePluginPortal()
6+
}
7+
}
8+
9+
plugins {
10+
id "com.android.application" version "9.1.0" apply false
11+
id "com.android.library"
12+
id "de.undercouch.download" version "5.6.0"
13+
}
14+
15+
rootProject.name = 'serious_python_android'

0 commit comments

Comments
 (0)