mirror of
https://gitlab.shinice.net/pixeldroid/PixelDroid
synced 2024-12-18 19:22:50 +01:00
0348696f3a
* Make less copies, detect if no changes are made for a fast path, give some feedback while processing the image * avoid NPE on camera, use more generic inputstream so that file picking works again * stop using resource in test * stop using resource in test * fix uri issue and add test * Test dialog, stringify strings * click error button, for fun * test error button in post creation * check retry of upload works * Remove wrong button click in test * add some tests for followers list * test edit profile button * test back button * try to get all callbacks to be called * Fix typo * Make sure crop is not ignored
30 lines
688 B
Groovy
30 lines
688 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.3.72'
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.0.0'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|