You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion project.sdk
|
|
buildToolsVersion project.buildTools
|
|
|
|
defaultConfig {
|
|
minSdkVersion project.minSdk
|
|
targetSdkVersion project.sdk
|
|
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.android.support:support-v4:" + project.supportVersion
|
|
compile "com.android.support:appcompat-v7:" + project.supportVersion
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.4'
|
|
}
|
|
|
|
|
|
ext {
|
|
bintrayRepo = 'maven'
|
|
bintrayName = 'CameraFragment'
|
|
orgName = 'florent37'
|
|
|
|
publishedGroupId = 'com.github.florent37'
|
|
libraryName = 'CameraFragment'
|
|
artifact = 'camerafragment'
|
|
|
|
libraryDescription = 'CameraFragment'
|
|
|
|
siteUrl = 'https://github.com/florent37/CameraFragment'
|
|
gitUrl = 'https://github.com/florent37/CameraFragment.git'
|
|
|
|
libraryVersion = rootProject.ext.libraryVersion
|
|
|
|
developerId = 'florent37'
|
|
developerName = 'Florent Champigny'
|
|
developerEmail = 'champigny.florent@gmail.com'
|
|
|
|
licenseName = 'The Apache Software License, Version 2.0'
|
|
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
|
|
allLicenses = ["Apache-2.0"]
|
|
}
|
|
|
|
apply from: rootProject.file('gradle/install-v1.gradle')
|
|
apply from: rootProject.file('gradle/bintray-android-v1.gradle') |