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.
CameraFragment/camerafragment/build.gradle

52 lines
1.3 KiB

8 years ago
apply plugin: 'com.android.library'
android {
8 years ago
compileSdkVersion project.sdk
buildToolsVersion project.buildTools
8 years ago
defaultConfig {
8 years ago
minSdkVersion project.minSdk
targetSdkVersion project.sdk
versionCode 1
versionName "1.0"
8 years ago
}
}
dependencies {
8 years ago
compile "com.android.support:support-v4:" + project.supportVersion
compile "com.android.support:appcompat-v7:" + project.supportVersion
8 years ago
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
8 years ago
}
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"]
}
8 years ago
apply from: rootProject.file('gradle/install-v1.gradle')
apply from: rootProject.file('gradle/bintray-android-v1.gradle')