From 62f45329aaf4d0c9489cf75da8fca30c3d175ad1 Mon Sep 17 00:00:00 2001 From: rustinmyeye Date: Thu, 8 Jan 2026 18:08:58 -0500 Subject: [PATCH] trying to fix dependency issues --- NeoLang/build.gradle | 22 +++++++++------------- NeoTermBridge/build.gradle | 7 +++---- Xorg/build.gradle | 10 ++++++---- app/build.gradle | 14 +++++--------- app/src/main/AndroidManifest.xml | 6 ++++-- build.gradle | 22 ++++++++-------------- chrome-tabs/build.gradle | 4 ++-- gradle/wrapper/gradle-wrapper.properties | 2 +- 8 files changed, 38 insertions(+), 49 deletions(-) diff --git a/NeoLang/build.gradle b/NeoLang/build.gradle index 6bfc8970..1b426599 100644 --- a/NeoLang/build.gradle +++ b/NeoLang/build.gradle @@ -1,22 +1,15 @@ apply plugin: 'java-library' apply plugin: 'kotlin' -dependencies { - implementation fileTree(dir: 'libs', include: ['*.jar']) - compile rootProject.ext.deps["kotlin-stdlib"] -} - -buildscript { - repositories { - mavenCentral() - } - dependencies { - classpath rootProject.ext.deps["kotlin-gradle-plugin"] - } -} repositories { mavenCentral() } + +java { + sourceCompatibility = 1.8 + targetCompatibility = 1.8 +} + compileKotlin { kotlinOptions { jvmTarget = "1.8" @@ -27,6 +20,9 @@ compileTestKotlin { jvmTarget = "1.8" } } + dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation rootProject.ext.deps["kotlin-stdlib"] testImplementation rootProject.ext.deps["junit"] } diff --git a/NeoTermBridge/build.gradle b/NeoTermBridge/build.gradle index cc06b6d9..903106ae 100644 --- a/NeoTermBridge/build.gradle +++ b/NeoTermBridge/build.gradle @@ -4,6 +4,7 @@ def libraryVersionCode = 1 def libraryVersionName = "1.0" android { + namespace "io.neoterm.bridge" compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION defaultConfig { @@ -23,9 +24,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.2.0' - androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', { - exclude group: 'com.android.support', module: 'support-annotations' - }) + implementation 'androidx.appcompat:appcompat:1.7.1' + androidTestImplementation('androidx.test.espresso:espresso-core:3.7.0') testImplementation rootProject.ext.deps["junit"] } diff --git a/Xorg/build.gradle b/Xorg/build.gradle index 5240a75a..9ed67189 100644 --- a/Xorg/build.gradle +++ b/Xorg/build.gradle @@ -1,6 +1,7 @@ apply plugin: 'com.android.library' android { + namespace "io.neoterm.xorg" compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION defaultConfig { @@ -22,15 +23,16 @@ android { jniLibs.srcDirs = ['src/main/jniLibs'] } } + lintOptions { + disable 'MissingPermission', 'MissingSuperCall', 'UnsafeDynamicallyLoadedCode' + } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation rootProject.ext.deps["appcompat-v7"] + implementation 'androidx.appcompat:appcompat:1.7.1' testImplementation rootProject.ext.deps["junit"] - androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', { - exclude group: 'com.android.support', module: 'support-annotations' - }) + androidTestImplementation('androidx.test.espresso:espresso-core:3.7.0') } diff --git a/app/build.gradle b/app/build.gradle index 58674719..a28122b5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,6 +2,7 @@ apply plugin: 'com.android.application' apply plugin: 'kotlin-android' android { + namespace "io.neoterm" compileSdkVersion rootProject.ext.android.COMPILE_SDK_VERSION defaultConfig { @@ -52,20 +53,15 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') testImplementation rootProject.ext.deps["junit"] - androidTestImplementation project(path: ':NeoLang') implementation rootProject.ext.deps["kotlin-stdlib"] - implementation 'org.greenrobot:eventbus:3.0.0' - implementation 'com.github.wrdlbrnft:modular-adapter:0.2.0.6' - implementation 'com.github.wrdlbrnft:sorted-list-adapter:0.2.0.19' - implementation 'com.simplecityapps:recyclerview-fastscroll:1.0.16' - implementation 'de.psdev.licensesdialog:licensesdialog:1.8.3' - implementation 'com.github.GrenderG:Color-O-Matic:1.1.5' + implementation 'org.greenrobot:eventbus:3.3.1' + implementation 'com.simplecityapps:recyclerview-fastscroll:2.0.1' + implementation 'de.psdev.licensesdialog:licensesdialog:2.2.0' implementation 'androidx.annotation:annotation:1.2.0' implementation 'androidx.cardview:cardview:1.0.0' - implementation 'androidx.appcompat:appcompat:1.2.0' - implementation 'androidx.appcompat:appcompat-resources:1.2.0' + implementation 'androidx.appcompat:appcompat:1.7.1' implementation project(':chrome-tabs') implementation project(':NeoLang') diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 93a20c06..095cf337 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -33,6 +33,7 @@ @@ -137,7 +138,7 @@ + android:enabled="true" + android:exported="false"/>