Thorium-android-app/app/build.gradle

84 lines
3.3 KiB
Groovy
Raw Normal View History

2018-03-03 01:10:13 +01:00
apply plugin: 'com.android.application'
android {
2018-11-10 17:48:09 +01:00
compileSdkVersion 28
2018-03-03 01:10:13 +01:00
defaultConfig {
applicationId "net.schueller.peertube"
minSdkVersion 21
2018-11-10 17:48:09 +01:00
targetSdkVersion 28
2020-06-19 08:40:23 +02:00
versionCode 1037
versionName "1.0.37"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-01-01 05:40:46 +01:00
ext {
libVersions = [
exoplayer: '2.9.3'
]
}
2018-11-13 21:04:06 +01:00
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// Layouts and design
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2020-01-04 21:26:54 +01:00
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
2020-01-04 21:26:54 +01:00
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
2020-05-16 16:11:16 +02:00
implementation 'com.google.android.material:material:1.1.0'
implementation 'de.hdodenhof:circleimageview:3.0.0'
2018-11-13 21:04:06 +01:00
// font awesome
implementation "com.mikepenz:iconics-core:3.1.0"
implementation 'com.mikepenz:fontawesome-typeface:5.3.1.1@aar'
2018-11-13 21:04:06 +01:00
// http client / REST
2020-05-16 16:11:16 +02:00
implementation 'com.squareup.okhttp3:okhttp:4.3.1'
2018-12-30 07:15:59 +01:00
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
2018-11-13 21:04:06 +01:00
// image downloading and caching library
implementation 'com.squareup.picasso:picasso:2.71828'
2018-11-13 21:04:06 +01:00
// json decoder/encoder
implementation 'com.google.code.gson:gson:2.8.6'
2018-12-30 07:15:59 +01:00
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
2018-11-13 21:04:06 +01:00
// Torrents and WebRTC
2018-12-30 07:15:59 +01:00
implementation 'com.github.TorrentStream:TorrentStream-Android:2.6.1'
2018-11-13 21:04:06 +01:00
// implementation "com.github.TorrentStream:TorrentStreamServer-Android:1.0.1"
// implementation 'org.webrtc:google-webrtc:1.0.+'
2019-01-01 05:40:46 +01:00
// video player repo:jcenter()
implementation "com.google.android.exoplayer:exoplayer-core:$libVersions.exoplayer"
implementation "com.google.android.exoplayer:exoplayer-dash:$libVersions.exoplayer"
implementation "com.google.android.exoplayer:exoplayer-ui:$libVersions.exoplayer"
implementation "com.google.android.exoplayer:exoplayer-hls:$libVersions.exoplayer"
implementation "com.google.android.exoplayer:exoplayer-smoothstreaming:$libVersions.exoplayer"
implementation "com.google.android.exoplayer:extension-mediasession:$libVersions.exoplayer"
2018-11-13 21:04:06 +01:00
// testing
testImplementation 'junit:junit:4.12'
2020-01-04 21:26:54 +01:00
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2018-11-13 21:04:06 +01:00
}
2018-03-03 01:10:13 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2020-06-01 20:15:07 +02:00
buildToolsVersion '28.0.3'
2018-11-10 17:48:09 +01:00
applicationVariants.all { variant ->
variant.resValue "string", "versionName", variant.versionName
}
2018-03-03 01:10:13 +01:00
}
2018-12-17 18:11:41 +01:00
dependencies {
2020-05-16 16:11:16 +02:00
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta6'
2020-01-04 21:26:54 +01:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2018-12-17 18:11:41 +01:00
}