mirror of
https://github.com/leanote/leanote-android.git
synced 2026-01-13 07:03:54 +08:00
Corrected the title of the permission requesting dialog in LaunchActivity Add a widget from Android Studio widget template add the layout of widget , add the support Android Studio 3.0 fix the support Android Studio 3.0 Completed the development of app widget to show the recent blogs. chance the previewImage of app widget fixed the bug that occurred when there were less than 30 notes update build tools
26 lines
532 B
Groovy
26 lines
532 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|