|
1 |
| -group 'dev.jerson.fat_rsa' |
2 |
| -version '1.0' |
| 1 | +group = "dev.jerson.fast_rsa" |
| 2 | +version = "1.0-SNAPSHOT" |
3 | 3 |
|
4 | 4 | buildscript {
|
| 5 | + ext.kotlin_version = "1.8.22" |
5 | 6 | repositories {
|
6 | 7 | google()
|
7 | 8 | mavenCentral()
|
8 | 9 | }
|
9 | 10 |
|
10 | 11 | dependencies {
|
11 |
| - classpath 'com.android.tools.build:gradle:7.1.0' |
| 12 | + classpath("com.android.tools.build:gradle:8.1.0") |
| 13 | + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") |
12 | 14 | }
|
13 | 15 | }
|
14 | 16 |
|
15 |
| -rootProject.allprojects { |
| 17 | +allprojects { |
16 | 18 | repositories {
|
17 | 19 | google()
|
18 | 20 | mavenCentral()
|
19 | 21 | }
|
20 | 22 | }
|
21 | 23 |
|
22 |
| -apply plugin: 'com.android.library' |
| 24 | +apply plugin: "com.android.library" |
| 25 | +apply plugin: "kotlin-android" |
23 | 26 |
|
24 | 27 | android {
|
25 |
| - // Conditional for compatibility with AGP <4.2. |
26 | 28 | if (project.android.hasProperty("namespace")) {
|
27 |
| - namespace 'dev.jerson.fast_rsa' |
| 29 | + namespace = "dev.jerson.fast_rsa" |
28 | 30 | }
|
29 |
| - compileSdkVersion 31 |
30 | 31 |
|
31 |
| - defaultConfig { |
32 |
| - minSdkVersion 19 |
33 |
| - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| 32 | + compileSdk = 34 |
| 33 | + |
| 34 | + compileOptions { |
| 35 | + sourceCompatibility = JavaVersion.VERSION_1_8 |
| 36 | + targetCompatibility = JavaVersion.VERSION_1_8 |
34 | 37 | }
|
35 |
| - lintOptions { |
36 |
| - disable 'InvalidPackage' |
| 38 | + |
| 39 | + kotlinOptions { |
| 40 | + jvmTarget = JavaVersion.VERSION_1_8 |
| 41 | + } |
| 42 | + |
| 43 | + sourceSets { |
| 44 | + main { |
| 45 | + java.srcDirs += "src/main/kotlin" |
| 46 | + jniLibs.srcDirs = ['src/main/jniLibs'] |
| 47 | + } |
| 48 | + test { |
| 49 | + java.srcDirs += "src/test/kotlin" |
| 50 | + } |
37 | 51 | }
|
38 |
| -} |
39 | 52 |
|
40 |
| -task nativeLibsToJar(type: Jar, description: 'create a jar archive of the native libs') { |
41 |
| - destinationDirectory.set(file("$buildDir/native-libs")) |
42 |
| - archiveBaseName = 'native-libs' |
43 |
| - from fileTree(dir: 'libs', include: '**/*.so') |
44 |
| - into 'lib/' |
45 |
| -} |
| 53 | + defaultConfig { |
| 54 | + minSdk = 21 |
| 55 | + } |
46 | 56 |
|
47 |
| -tasks.withType(JavaCompile) { |
48 |
| - compileTask -> compileTask.dependsOn(nativeLibsToJar) |
49 |
| -} |
| 57 | + dependencies { |
| 58 | + testImplementation("org.jetbrains.kotlin:kotlin-test") |
| 59 | + testImplementation("org.mockito:mockito-core:5.0.0") |
| 60 | + } |
| 61 | + |
| 62 | + testOptions { |
| 63 | + unitTests.all { |
| 64 | + useJUnitPlatform() |
50 | 65 |
|
51 |
| -dependencies { |
52 |
| - api fileTree(dir: "$buildDir/native-libs", include: 'native-libs.jar') |
| 66 | + testLogging { |
| 67 | + events "passed", "skipped", "failed", "standardOut", "standardError" |
| 68 | + outputs.upToDateWhen {false} |
| 69 | + showStandardStreams = true |
| 70 | + } |
| 71 | + } |
| 72 | + } |
53 | 73 | }
|
0 commit comments