Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • 9286c6f970bf9612aed07c3156fe7c7fa6ed9596
  • master par défaut protégée
  • allow-port-sshfs
  • dev-elliu protégée
4 résultats

README.md

Blame
  • Pour en savoir plus sur ce projet, lisez le wiki.
    build.gradle 2,33 Kio
    apply plugin: 'com.android.application'
    apply plugin: 'kotlin-android'
    
    android {
        compileSdkVersion 29
        buildToolsVersion "30.0.2"
    
        defaultConfig {
            applicationId "fr.nitorac.aurionweb"
            minSdkVersion 19
            targetSdkVersion 29
            versionCode 4
            versionName "1.1.2"
            multiDexEnabled true
    
            testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        }
    
        compileOptions {
            coreLibraryDesugaringEnabled true
            sourceCompatibility JavaVersion.VERSION_1_8
            targetCompatibility JavaVersion.VERSION_1_8
        }
    
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
    }
    
    dependencies {
        implementation fileTree(dir: "libs", include: ["*.jar"])
        implementation 'androidx.appcompat:appcompat:1.2.0'
        implementation 'com.google.android.material:material:1.2.1'
        implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
        implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
        implementation 'androidx.navigation:navigation-fragment:2.3.0'
        implementation 'androidx.navigation:navigation-ui:2.3.0'
        implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
        implementation 'org.jsoup:jsoup:1.13.1'
        implementation 'com.google.code.gson:gson:2.8.6'
        implementation 'org.projectlombok:lombok:1.18.12'
        annotationProcessor 'org.projectlombok:lombok:1.18.12'
    
        implementation "androidx.webkit:webkit:1.4.0-alpha01"
    
        implementation 'com.github.lzyzsd:circleprogress:1.2.1'
        implementation 'com.mindorks.android:prdownloader:0.6.0'
    
        implementation 'com.afollestad.material-dialogs:core:3.3.0'
        implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0'
    
        testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'
        testImplementation 'junit:junit:4.13'
        androidTestImplementation 'androidx.test.ext:junit:1.1.2'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    
        coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10'
        implementation "androidx.core:core-ktx:1.3.2"
        implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
        implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    }
    repositories {
        mavenCentral()
    }