Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

arrow-fx-android: move Gradle configuration to the module #162

Merged
merged 1 commit into from
May 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions arrow-fx-android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
buildscript {
repositories {
google()
}
dependencies {
classpath("com.android.tools.build:gradle:3.6.0")
}
}

plugins {
id "maven-publish"
id "base"
id "com.android.library"
id "org.jetbrains.kotlin.android"
id "net.rdrei.android.buildtimetracker"
id "org.jetbrains.dokka"
id "org.jlleitschuh.gradle.ktlint"
Expand All @@ -18,6 +25,8 @@ repositories {
apply from: "$DOC_CONF"
//apply from: "$PUBLISH_CONF"

apply plugin: 'com.android.application'

android {
compileSdkVersion 29

Expand Down
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ buildscript {
maven {
url "https://plugins.gradle.org/m2/"
}
google()
}
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$ATOMICFU_VERSION"
classpath("com.android.tools.build:gradle:3.6.0")
}
}

Expand Down