2019-06-04 05:25:05 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2019-10-30 22:04:49 +08:00
|
|
|
compileSdkVersion 29
|
2019-06-04 05:25:05 +08:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.mian.gitnex"
|
|
|
|
minSdkVersion 21
|
2019-10-30 22:04:49 +08:00
|
|
|
targetSdkVersion 29
|
2020-06-11 21:47:28 +08:00
|
|
|
versionCode 296
|
|
|
|
versionName "3.0.0-rc2"
|
2019-06-04 05:25:05 +08:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
2020-05-22 06:49:09 +08:00
|
|
|
viewBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
2019-06-04 05:25:05 +08:00
|
|
|
buildTypes {
|
|
|
|
release {
|
2020-04-17 18:10:32 +08:00
|
|
|
minifyEnabled false
|
|
|
|
shrinkResources false
|
2019-06-04 05:25:05 +08:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lintOptions {
|
|
|
|
//checkReleaseBuilds false
|
|
|
|
abortOnError false
|
|
|
|
}
|
2020-03-16 17:25:15 +08:00
|
|
|
compileOptions {
|
|
|
|
targetCompatibility = "8"
|
|
|
|
sourceCompatibility = "8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
cleanedAnnotations
|
2020-04-15 04:55:04 +08:00
|
|
|
compile.exclude group: 'org.jetbrains', module: 'annotations'
|
2019-06-04 05:25:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-28 23:11:59 +08:00
|
|
|
def lifecycle_version = "2.3.0-alpha05"
|
2020-04-14 16:50:12 +08:00
|
|
|
def markwon_version = '4.3.1'
|
2020-04-18 07:39:49 +08:00
|
|
|
def acra = "5.5.0"
|
2019-06-04 05:25:05 +08:00
|
|
|
|
|
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
2020-06-08 14:34:53 +08:00
|
|
|
implementation "androidx.appcompat:appcompat:1.3.0-alpha01"
|
|
|
|
implementation "com.google.android.material:material:1.3.0-alpha01"
|
2019-10-30 22:04:49 +08:00
|
|
|
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
|
|
|
|
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
2020-03-28 02:59:24 +08:00
|
|
|
testImplementation "junit:junit:4.13"
|
2019-10-30 22:04:49 +08:00
|
|
|
androidTestImplementation "androidx.test:runner:1.2.0"
|
|
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:3.2.0"
|
|
|
|
implementation "com.github.vihtarb:tooltip:0.2.0"
|
2020-05-22 06:49:09 +08:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.7.0'
|
2020-03-16 17:25:15 +08:00
|
|
|
implementation "com.google.code.gson:gson:2.8.6"
|
2019-10-30 22:04:49 +08:00
|
|
|
implementation "com.squareup.picasso:picasso:2.71828"
|
|
|
|
implementation "com.amulyakhare:com.amulyakhare.textdrawable:1.0.1"
|
2020-04-03 14:28:24 +08:00
|
|
|
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'
|
2020-05-22 06:49:09 +08:00
|
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:4.7.0'
|
|
|
|
implementation 'org.ocpsoft.prettytime:prettytime:4.0.5.Final'
|
2020-03-16 17:25:15 +08:00
|
|
|
implementation "com.vdurmont:emoji-java:5.1.1"
|
2019-06-04 05:25:05 +08:00
|
|
|
implementation "com.pes.materialcolorpicker:library:1.2.5"
|
2019-09-30 00:44:42 +08:00
|
|
|
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"
|
2019-10-30 22:04:49 +08:00
|
|
|
implementation "pl.droidsonroids.gif:android-gif-drawable:1.2.19"
|
2019-06-04 05:25:05 +08:00
|
|
|
implementation "com.hendraanggrian.appcompat:socialview:0.2"
|
|
|
|
implementation "com.hendraanggrian.appcompat:socialview-commons:0.2"
|
2020-06-28 23:11:59 +08:00
|
|
|
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0" // Deprecated (https://developer.android.com/jetpack/androidx/releases/lifecycle)
|
2019-06-04 05:25:05 +08:00
|
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycle_version"
|
2019-10-18 01:47:27 +08:00
|
|
|
implementation "com.github.HamidrezaAmz:BreadcrumbsView:0.2.9"
|
2020-03-16 17:25:15 +08:00
|
|
|
implementation "commons-io:commons-io:20030203.000550"
|
2019-10-30 22:04:49 +08:00
|
|
|
implementation "com.github.chrisbanes:PhotoView:2.3.0"
|
2020-01-31 02:00:31 +08:00
|
|
|
implementation "com.github.barteksc:android-pdf-viewer:3.2.0-beta.1"
|
2020-04-18 07:39:49 +08:00
|
|
|
implementation "ch.acra:acra-mail:$acra"
|
|
|
|
implementation "ch.acra:acra-limiter:$acra"
|
|
|
|
implementation "ch.acra:acra-notification:$acra"
|
2020-06-30 22:43:27 +08:00
|
|
|
implementation "com.eightbitlab:blurview:1.6.3"
|
|
|
|
implementation "io.mikael:urlbuilder:2.0.9"
|
2020-04-18 07:39:49 +08:00
|
|
|
|
2019-06-04 05:25:05 +08:00
|
|
|
}
|