88 lines
3.9 KiB
Groovy
88 lines
3.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
defaultConfig {
|
|
applicationId "org.mian.gitnex"
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 100
|
|
versionName "2.5.0-dev"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
lintOptions {
|
|
//checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
compileOptions {
|
|
targetCompatibility = "8"
|
|
sourceCompatibility = "8"
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
cleanedAnnotations
|
|
compile.exclude group: 'org.jetbrains' , module:'annotations'
|
|
}
|
|
|
|
dependencies {
|
|
def lifecycle_version = "2.2.0"
|
|
def markwon_version = '4.3.0'
|
|
def fastadapter = "3.3.1"
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation "androidx.appcompat:appcompat:1.1.0"
|
|
implementation "com.google.android.material:material:1.2.0-alpha05"
|
|
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
|
|
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
|
testImplementation "junit:junit:4.13"
|
|
androidTestImplementation "androidx.test:runner:1.2.0"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
|
|
implementation "com.github.vihtarb:tooltip:0.2.0"
|
|
implementation 'com.squareup.okhttp3:okhttp:4.4.1'
|
|
implementation "com.google.code.gson:gson:2.8.6"
|
|
implementation "com.squareup.picasso:picasso:2.71828"
|
|
implementation "com.amulyakhare:com.amulyakhare.textdrawable:1.0.1"
|
|
implementation 'com.squareup.retrofit2:retrofit:2.8.1'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.8.1'
|
|
implementation 'com.squareup.retrofit2:converter-scalars:2.8.1'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.4.1'
|
|
implementation 'org.ocpsoft.prettytime:prettytime:4.0.4.Final'
|
|
implementation "com.vdurmont:emoji-java:5.1.1"
|
|
implementation "com.pes.materialcolorpicker:library:1.2.5"
|
|
implementation "io.noties.markwon:core:$markwon_version"
|
|
implementation "io.noties.markwon:ext-latex:$markwon_version"
|
|
implementation "io.noties.markwon:ext-strikethrough:$markwon_version"
|
|
implementation "io.noties.markwon:ext-tables:$markwon_version"
|
|
implementation "io.noties.markwon:ext-tasklist:$markwon_version"
|
|
implementation "io.noties.markwon:html:$markwon_version"
|
|
implementation "io.noties.markwon:image:$markwon_version"
|
|
implementation "io.noties.markwon:image-picasso:$markwon_version"
|
|
implementation "io.noties.markwon:linkify:$markwon_version"
|
|
implementation "io.noties.markwon:recycler:$markwon_version"
|
|
implementation "io.noties.markwon:recycler-table:$markwon_version"
|
|
implementation "io.noties.markwon:simple-ext:$markwon_version"
|
|
implementation "io.noties.markwon:syntax-highlight:$markwon_version"
|
|
implementation "com.caverock:androidsvg:1.4"
|
|
implementation "pl.droidsonroids.gif:android-gif-drawable:1.2.19"
|
|
implementation "com.hendraanggrian.appcompat:socialview:0.2"
|
|
implementation "com.hendraanggrian.appcompat:socialview-commons:0.2"
|
|
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
|
|
implementation "com.github.HamidrezaAmz:BreadcrumbsView:0.2.9"
|
|
implementation "commons-io:commons-io:20030203.000550"
|
|
implementation "com.github.chrisbanes:PhotoView:2.3.0"
|
|
implementation "com.pddstudio:highlightjs-android:1.5.0"
|
|
implementation "com.github.barteksc:android-pdf-viewer:3.2.0-beta.1"
|
|
//noinspection GradleDependency
|
|
implementation "com.mikepenz:fastadapter:$fastadapter"
|
|
implementation "com.mikepenz:fastadapter-commons:$fastadapter"
|
|
implementation "com.mikepenz:fastadapter-extensions:$fastadapter"
|
|
}
|