mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
Addresses Android for #1535 Add QR Codes to the keyman.com keyboard page. If the main app doesn't include the QRGen libraries, the QR Code isn't generated/displayed. Also update the list of dependencies in README.md
25 lines
637 B
Groovy
25 lines
637 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven {
|
|
url 'https://maven.fabric.io/public'
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.2'
|
|
classpath 'com.google.gms:google-services:4.3.2'
|
|
classpath 'io.fabric.tools:gradle:1.31.2'
|
|
classpath 'name.remal:gradle-plugins:1.0.157'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|