Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
duy committed Sep 24, 2024
1 parent 2b2543c commit 64b7f85
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ dependencies {
}
}

coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.1")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.2")

testImplementation 'junit:junit:4.13.2'

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.8.20'
ext.kotlin_version = '1.9.20'

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'com.android.application' version '8.6.0' apply false
id 'com.android.library' version '8.6.0' apply false
id 'com.android.application' version '8.6.1' apply false
id 'com.android.library' version '8.6.1' apply false
}

Binary file not shown.
Binary file not shown.
Binary file modified modules/jlatex/jlatexmath/jlatexmath-debug.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion modules/ncalc-editor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
compileSdk 34

defaultConfig {
minSdk 24
minSdk 26
targetSdk 34
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion modules/programming/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
namespace 'com.symja.programming'
compileSdk 34
defaultConfig {
minSdk 24
minSdk 26

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
2 changes: 1 addition & 1 deletion modules/symja-evaluator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
compileSdk 34

defaultConfig {
minSdk 24
minSdk 26

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,10 @@ public static void init() {
ExprEvaluator exprEvaluator = new ExprEvaluator();
Log.d(TAG, String.valueOf(exprEvaluator.eval("Sin(x)+Cos(x)")));


semaphore.release();
systemInited.set(true);
} catch (Exception e) { // Should not throw error
e.printStackTrace();
} finally {
semaphore.release();
}
}
Expand All @@ -88,7 +87,7 @@ public SymjaResult eval(IExpr expr) throws Exception {
final IExpr finalExpr = expr;

try {
long precision = finalExpr.determinePrecision();
long precision = finalExpr.determinePrecision(true);
EvalEngine evalEngine = exprEvaluator.getEvalEngine();
FixedPrecisionApfloatHelper fixedPrecisionApfloatHelper = evalEngine.setNumericPrecision(precision);
if (DLog.DEBUG) {
Expand Down

0 comments on commit 64b7f85

Please sign in to comment.