mirror of
https://github.com/rfc2822/GfxTablet
synced 2025-10-03 09:39:16 +02:00

* use AndroidStudio/gradle instead of Eclipse/ant * upgrade to SDK v22 and build tools v22 * manage network connection from CanvasActivity instead of CanvasView * show a "No host configured" message instead of opening Settings automatically when no host is configured * use Android 4.4 immersive full-screen (fixes #59) * use Material design (using support library) * add setting for dark canvas (closes #54, #73, closes #76)
15 lines
301 B
Groovy
15 lines
301 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.1.0'
|
|
}
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|