You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.8 KiB
59 lines
1.8 KiB
apply plugin: 'com.android.application' |
|
|
|
android { |
|
compileSdkVersion 29 |
|
buildToolsVersion "29.0.3" |
|
|
|
defaultConfig { |
|
applicationId "godau.fynn.lawdirect" |
|
minSdkVersion 14 |
|
targetSdkVersion 29 |
|
versionCode 1 |
|
versionName "0.1" |
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
|
} |
|
|
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
|
} |
|
} |
|
compileOptions { |
|
sourceCompatibility JavaVersion.VERSION_1_8 |
|
targetCompatibility JavaVersion.VERSION_1_8 |
|
} |
|
|
|
} |
|
|
|
dependencies { |
|
implementation fileTree(dir: 'libs', include: ['*.jar']) |
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0' |
|
implementation 'androidx.cardview:cardview:1.0.0' |
|
|
|
implementation 'com.google.android.material:material:1.2.0' |
|
|
|
implementation 'org.jsoup:jsoup:1.13.1' |
|
|
|
implementation 'androidx.fragment:fragment:1.2.5' |
|
implementation 'androidx.preference:preference:1.1.1' |
|
implementation 'androidx.viewpager2:viewpager2:1.0.0' |
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828' |
|
|
|
implementation 'org.codeberg.fynngodau:TypedRecyclerView:2.0' |
|
implementation 'org.codeberg.fynngodau:librariesDirect:2.1' |
|
implementation 'com.github.fynngodau:BreadcrumbsView:bc3b424743' |
|
|
|
def room_version = "2.2.5" |
|
implementation "androidx.room:room-runtime:$room_version" |
|
annotationProcessor "androidx.room:room-compiler:$room_version" |
|
|
|
testImplementation 'junit:junit:4.12' |
|
|
|
// Required for instrumented tests |
|
androidTestImplementation 'com.android.support:support-annotations:28.0.0' |
|
androidTestImplementation 'com.android.support.test:runner:1.0.2' |
|
}
|
|
|