Skip to content

Commit

Permalink
fix issue with number of points retrieved from SRS
Browse files Browse the repository at this point in the history
  • Loading branch information
madztheo committed Jul 23, 2024
1 parent 58c5d25 commit 7844f4e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
12 changes: 4 additions & 8 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ android {
consumerProguardFiles("consumer-rules.pro")
}

packagingOptions {
doNotStrip("**/*.so")
}

sourceSets {
getByName("main") {
jniLibs.srcDirs("src/main/jniLibs")
Expand Down Expand Up @@ -62,7 +58,7 @@ afterEvaluate {
from(components["release"])
groupId = "com.github.madztheo"
artifactId = "noir_android"
version = "v0.30.0-7"
version = "v0.30.0-8"
}
}
}
Expand Down Expand Up @@ -116,10 +112,10 @@ tasks.register<Copy>("copyRustLibs") {
from("$rustLibPath/target/aarch64-linux-android/release")
into("src/main/jniLibs/arm64-v8a")
} else {
// Download the .so file from a remote server
// Download the .so file from the GitHub release
download.run {
src("https://github.com/madztheo/noir_android/releases/download/v0.30.0-7/libnoir_java.so")
dest("src/main/jniLibs/arm64-v8a")
src("https://github.com/madztheo/noir_android/releases/download/v0.30.0-8/libnoir_java_arm64-v8a.so")
dest("src/main/jniLibs/arm64-v8a/libnoir_java.so")
overwrite(false)
}
}
Expand Down
4 changes: 3 additions & 1 deletion scripts/clean.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
./gradlew clean
cd lib/src/main/java/noir_java && cargo clean
rm -rf Cargo.lock
rm -rf Cargo.lock
cd ../../../../../
rm -rf lib/src/main/jniLibs

0 comments on commit 7844f4e

Please sign in to comment.