meshtastic-android/build.gradle

64 wiersze
2.2 KiB
Groovy
Czysty Zwykły widok Historia

2020-01-20 23:53:22 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2021-11-17 01:36:02 +00:00
ext.kotlin_version = '1.6.0'
2021-11-17 19:13:02 +00:00
ext.coroutines_version = "1.5.2"
2020-04-05 19:56:57 +00:00
2020-01-20 23:53:22 +00:00
repositories {
google()
2021-07-26 16:34:42 +00:00
// jcenter()
2020-01-23 02:32:21 +00:00
mavenCentral()
2020-01-20 23:53:22 +00:00
}
dependencies {
2021-11-17 01:36:02 +00:00
classpath 'com.android.tools.build:gradle:7.0.3'
2020-01-20 23:53:22 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
2020-01-20 23:53:22 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
2020-01-22 17:28:59 +00:00
2020-01-22 21:40:57 +00:00
// Add the Crashlytics Gradle plugin.
// Check that you have the Google Services Gradle plugin v4.3.2 or later
// (if not, add it).
2021-08-29 21:15:33 +00:00
classpath 'com.google.gms:google-services:4.3.10'
2021-11-17 01:36:02 +00:00
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.0'
2020-01-23 02:32:21 +00:00
// protobuf plugin - docs here https://github.com/google/protobuf-gradle-plugin
2021-02-27 01:49:25 +00:00
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.15'
2020-07-20 19:08:46 +00:00
//classpath "app.brant:amazonappstorepublisher:0.1.0"
classpath 'com.github.triplet.gradle:play-publisher:2.8.0'
// for unit testing https://github.com/bjoernQ/unmock-plugin
classpath 'com.github.bjoernq:unmockplugin:0.7.6'
2020-01-20 23:53:22 +00:00
}
}
allprojects {
repositories {
maven {
// Per https://docs.mapbox.com/android/maps/guides/install/ we now need to signin to download mapbox lib
url 'https://api.mapbox.com/downloads/v2/releases/maven'
authentication {
basic(BasicAuthentication)
}
credentials {
// Do not change the username below.
// This should always be `mapbox` (not your username).
username = 'mapbox'
// Use the secret token you stored in gradle.properties as the password
password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: ""
}
}
2020-01-20 23:53:22 +00:00
google()
2021-08-29 21:15:33 +00:00
mavenCentral()
// jcenter()
maven { url 'https://jitpack.io' }
2020-07-20 19:08:46 +00:00
//maven { url "https://plugins.gradle.org/m2/" }
2020-01-20 23:53:22 +00:00
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}