mirror of
https://github.com/whyorean/AuroraStore.git
synced 2026-06-19 13:08:59 -04:00
Addressed following bugs: https://gitlab.com/AuroraOSS/AuroraStore/issues/253 https://gitlab.com/AuroraOSS/AuroraStore/issues/237 https://gitlab.com/AuroraOSS/AuroraStore/issues/259 https://gitlab.com/AuroraOSS/AuroraStore/issues/257 https://gitlab.com/AuroraOSS/AuroraStore/issues/255 https://gitlab.com/AuroraOSS/AuroraStore/issues/251 https://gitlab.com/AuroraOSS/AuroraStore/issues/249 https://gitlab.com/AuroraOSS/AuroraStore/issues/234 https://gitlab.com/AuroraOSS/AuroraStore/issues/247 https://gitlab.com/AuroraOSS/AuroraStore/issues/232
43 lines
1.1 KiB
Groovy
43 lines
1.1 KiB
Groovy
/*
|
|
* Aurora Store
|
|
* Copyright (C) 2019, Rahul Kumar Patel <whyorean@gmail.com>
|
|
*
|
|
* Aurora Store is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Aurora Store is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Aurora Store. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|