You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MpLive/app/build.gradle

31 lines
765 B
Groovy

9 years ago
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
9 years ago
defaultConfig {
applicationId "net.ossrs.yasea.demo"
9 years ago
minSdkVersion 16
targetSdkVersion 22
9 years ago
versionCode 1
versionName "2.5"
ndk {
abiFilters "armeabi-v7a", "x86"
}
9 years ago
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libx264.libs', include: ['*.jar'])
9 years ago
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile project(path: ':library')
9 years ago
}