GPTutor / app / build.gradle
build.gradle
Raw
plugins {
    id 'com.android.application'
}

android {
    namespace 'com.demarridosunmu.gptutor3'
    compileSdk 33

    defaultConfig {
        applicationId 'com.demarridosunmu.gptutor'
        minSdk 26
        targetSdk 33
        versionCode 4
        versionName '1.0.2'

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            signingConfig signingConfigs.debug
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_15
        targetCompatibility JavaVersion.VERSION_15
    }

}

repositories {
    maven { url "https://jitpack.io" }
    google()
    mavenCentral()
    gradlePluginPortal()
}



dependencies {
    implementation 'io.github.iffanmajid:katexmathview:1.0.3'
    implementation 'com.github.douglasjunior:android-simple-tooltip:1.1.0'
    implementation 'io.github.kexanie.library:MathView:0.0.6'

    implementation 'com.google.android.material:material:1.9.0'
    implementation 'androidx.appcompat:appcompat:1.6.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

    implementation 'com.google.code.gson:gson:2.8.9'
    implementation 'com.theokanning.openai-gpt3-java:service:0.14.0'
    implementation 'androidx.recyclerview:recyclerview:1.2.1'
    implementation 'androidx.preference:preference:1.2.0'

    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}