File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -291,7 +291,7 @@ ifneq ($(DEBUG), 1)
291291 $(EXTERNAL_ROOT)/bin/termux-elf-cleaner --api-level $(NDK_PLATFORM_LEVEL) $(INSTALL_DIR)/libtor.so
292292 ls -l $(INSTALL_DIR)/libtor.so
293293endif
294- echo "Checking for TorService java bindings in libtor.so:"
294+ @ echo "Checking for TorService java bindings in libtor.so:"
295295 grep "Java_org_torproject_jni_TorService" $(INSTALL_DIR)/libtor.so
296296
297297 # this requires unit tests to run, uncomment when CI or anything uses these tests like they did before
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ dependencies {
8383}
8484
8585tasks.register<Jar >(" sourcesJar" ) {
86- archiveBaseName.set(" tor-android-" + getVersionName())
86+ archiveBaseName.set(" tor-android-" + getVersionName().get() )
8787 archiveClassifier.set(" sources" )
8888 from(android.sourceSets.getByName(" main" ).java.srcDirs)
8989}
@@ -94,7 +94,7 @@ tasks.dokkaGeneratePublicationJavadoc.configure {
9494
9595tasks.register<Jar >(" javadocJar" ) {
9696 dependsOn(tasks.dokkaGeneratePublicationJavadoc)
97- archiveBaseName.set(" tor-android-" + getVersionName())
97+ archiveBaseName.set(" tor-android-" + getVersionName().get() )
9898 archiveClassifier.set(" javadoc" )
9999 from(tasks.dokkaGeneratePublicationJavadoc.flatMap { it.outputDirectory })
100100}
You can’t perform that action at this time.
0 commit comments