Skip to content

Commit 7056dea

Browse files
authored
Merge pull request #200 from auras/enable_16kb_page_size
Enable 16kb page size
2 parents 1ac104f + 19542e7 commit 7056dea

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:8.5.1'
7+
classpath 'com.android.tools.build:gradle:8.10.0'
88
}
99
}
1010

dexmaker-mockito/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description = "Implementation of the Mockito API for use on the Android Dalvik V
77
apply plugin: 'java-library'
88
apply from: "$rootDir/gradle/publishing.gradle"
99

10-
java.targetCompatibility = '1.7'
11-
java.sourceCompatibility = '1.7'
10+
java.targetCompatibility = '1.8'
11+
java.sourceCompatibility = '1.8'
1212

1313
tasks.withType(JavaCompile) {
1414
options.errorprone {

dexmaker/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description = "A utility for doing compile or runtime code generation targeting
77
apply plugin: 'java'
88
apply from: "$rootDir/gradle/publishing.gradle"
99

10-
java.targetCompatibility = '1.7'
11-
java.sourceCompatibility = '1.7'
10+
java.targetCompatibility = '1.8'
11+
java.sourceCompatibility = '1.8'
1212

1313
tasks.withType(JavaCompile) {
1414
options.errorprone {

gradle/publishing_aar.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44
android {
55
// Explicitly set the NDK release to ensure we use the latest stable, as
66
// opposed to the default NDK tied to the AGP version.
7-
ndkVersion = '27.0.12077973'
7+
ndkVersion = '28.1.13356709'
88
defaultConfig {
99
ndk {
1010
// Explicitly enable the 'riscv64' ABI with 'abiFilters' as it is
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)