| 12345678910111213141516171819202122232425262728 |
- apply plugin: 'com.android.library'
- apply plugin: 'com.novoda.bintray-release'
- android {
- compileSdkVersion 28
- buildToolsVersion '28.0.3'
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 28
- }
- lintOptions {
- abortOnError false
- }
- }
- publish {
- userOrg = 'ybq'
- groupId = 'com.github.ybq'
- artifactId = 'Android-SpinKit'
- publishVersion = '1.4.0'
- desc = 'Android loading animations'
- website = 'https://github.com/ybq/Android-SpinKit'
- licences = ['MIT']
- }
|