Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b84501e4 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

camera: Update gradle to 8.2.0

parent 47c3bf49
Loading
Loading
Loading
Loading
+15 −12
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'org.jetbrains.kotlin.android'

android {
    compileSdkVersion 31
    compileSdkVersion 33
    compileOptions.encoding = 'UTF-8'

    compileOptions {
@@ -23,7 +23,7 @@ android {
    defaultConfig {
        applicationId "foundation.e.camera"
        minSdkVersion 25
        targetSdkVersion 31
        targetSdkVersion 33

        renderscriptTargetApi 21
        //renderscriptSupportModeEnabled true // don't use support library as it bloats the APK, and we don't need pre-4.4 support
@@ -56,28 +56,31 @@ android {
        abortOnError false
        checkReleaseBuilds false
    }
    buildFeatures {
        renderScript true
        buildConfig true
    }
    namespace 'foundation.e.camera'
    //useLibrary 'android.test.mock'

}

dependencies {
    //noinspection GradleCompatible
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation "androidx.constraintlayout:constraintlayout:2.1.3"
    implementation "androidx.constraintlayout:constraintlayout:2.1.4"
    implementation "org.greenrobot:eventbus:3.3.1"
    implementation 'androidx.core:core-ktx:1.8.0'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'

    // appcompat version must be 1.4.0 or later to satisfy emoji policy!
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'androidx.appcompat:appcompat:1.6.1'

    implementation 'androidx.exifinterface:exifinterface:1.3.3'
    implementation 'androidx.exifinterface:exifinterface:1.3.7'
    implementation 'foundation.e:elib:0.0.1-alpha11'

    testImplementation 'junit:junit:4.13.1'
    testImplementation 'junit:junit:4.13.2'

    // newer AndroidJUnit4 InstrumentedTest
    androidTestImplementation "androidx.test:runner:1.4.0"
    androidTestImplementation "androidx.test:rules:1.4.0"
    androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
    androidTestImplementation "androidx.test:runner:1.5.2"
    androidTestImplementation "androidx.test:rules:1.5.0"
    androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
}
+0 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="foundation.e.camera"
    android:versionCode="87"
    android:versionName="1.51.1"
    android:installLocation="auto"
+1 −1
Original line number Diff line number Diff line
@@ -2435,7 +2435,7 @@ public class MyApplicationInterface extends BasicApplicationInterface {
                try {
                    retriever.release();
                }
                catch(RuntimeException ex) {
                catch(RuntimeException | IOException ex) {
                    // ignore
                }
                try {
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ buildscript {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:7.2.0'
        classpath 'com.android.tools.build:gradle:8.2.0'
        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10'
    }
}
+2 −0
Original line number Diff line number Diff line
@@ -2,3 +2,5 @@ android.useAndroidX=true
android.enableJetifier=true
org.gradle.jvmargs=-Xmx1400m
org.gradle.parallel=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
Loading