123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*
- * campfire, formerly known as bandcampDirect
- * Copyright (C) 2020 Fynn Godau
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- * Not affiliated with bandcamp, Incorporated.
- */
- allprojects {
- repositories {
- jcenter()
- google()
- maven { url 'https://jitpack.io' }
- }
- }
- buildscript {
- repositories {
- jcenter()
- google()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:8.4.1'
- }
- }
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 34
- defaultConfig {
- applicationId "godau.fynn.bandcampdirect"
- minSdkVersion 21 // TODO why not lower?
- targetSdkVersion 28
- versionCode 3
- versionName "0.3"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- debug {
- applicationIdSuffix ".debug"
- }
- }
- compileOptions {
- sourceCompatibility 1.8
- targetCompatibility 1.8
- }
- namespace 'godau.fynn.bandcampdirect'
- }
- dependencies {
- implementation 'com.squareup.okhttp3:okhttp:4.12.0'
- implementation 'com.android.volley:volley:1.2.1'
- implementation 'org.jsoup:jsoup:1.17.2'
- implementation 'androidx.media:media:1.7.0'
- implementation 'androidx.palette:palette:1.0.0'
- implementation "androidx.room:room-runtime:2.6.1"
- implementation 'androidx.room:room-rxjava2:2.6.1'
- implementation 'androidx.room:room-runtime:2.6.1'
- annotationProcessor "androidx.room:room-compiler:2.6.1"
- implementation 'org.codeberg.fynngodau:librariesDirect:3.2'
- implementation 'androidx.recyclerview:recyclerview:1.3.2'
- implementation 'org.codeberg.fynngodau:TypedRecyclerView:2.2'
- implementation 'androidx.fragment:fragment:1.7.1'
- implementation 'com.github.TeamNewPipe:NewPipeExtractor:v0.21.0'
- testImplementation "junit:junit:4.13.2"
- testImplementation 'org.json:json:20190722'
- }
|