Skip to content

Commit

Permalink
Migrate from groovy to kotlin script style
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Jun 6, 2020
1 parent b7b74ea commit 3a2c025
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 81 deletions.
40 changes: 0 additions & 40 deletions app/build.gradle

This file was deleted.

12 changes: 12 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import io.wax911.emoji.buildSrc.Libraries

plugins {
id("io.wax911.emojify")
}

dependencies {
implementation(project(":emojify"))

implementation(Libraries.Google.Material.material)
implementation(Libraries.AndroidX.ContraintLayout.constraintLayout)
}
40 changes: 0 additions & 40 deletions emojify/build.gradle

This file was deleted.

9 changes: 9 additions & 0 deletions emojify/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import io.wax911.emoji.buildSrc.Libraries

plugins {
id("io.wax911.emojify")
}

dependencies {
implementation(Libraries.Google.Gson.gson)
}
1 change: 0 additions & 1 deletion settings.gradle

This file was deleted.

5 changes: 5 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rootProject.name= "AndroidEmojify"
include(":emojify")

if (!System.getenv().containsKey("CI"))
include(":app")

0 comments on commit 3a2c025

Please sign in to comment.