Skip to content

Commit cec9ed8

Browse files
committed
Add all source file to project
1 parent 7049236 commit cec9ed8

40 files changed

Lines changed: 9590 additions & 0 deletions

build.gradle

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
apply plugin: 'com.android.library'
2+
apply plugin: 'maven'
3+
4+
5+
group = 'net.majorkernelpanic'
6+
version = '3.0'
7+
8+
description = """libstreaming"""
9+
10+
buildscript {
11+
repositories {
12+
mavenCentral()
13+
}
14+
dependencies {
15+
classpath 'com.android.tools.build:gradle:1.0.0'
16+
}
17+
}
18+
19+
android {
20+
compileSdkVersion 21
21+
buildToolsVersion "21.1.1"
22+
23+
defaultConfig {
24+
minSdkVersion 16
25+
targetSdkVersion 21
26+
}
27+
28+
compileOptions {
29+
sourceCompatibility JavaVersion.VERSION_1_7
30+
targetCompatibility JavaVersion.VERSION_1_7
31+
}
32+
}
33+
34+
repositories {
35+
mavenCentral()
36+
}
37+
38+
39+
dependencies {
40+
compile fileTree(dir: 'libs', include: ['*.jar'])
41+
}
42+
43+
uploadArchives {
44+
repositories {
45+
mavenDeployer {
46+
repository url: 'file://' + new File(System.getProperty('user.home'), '.m3/repository').absolutePath
47+
}
48+
}
49+
}
50+
task install(dependsOn: uploadArchives)

src/main/AndroidManifest.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="net.majorkernelpanic.streaming"
3+
android:versionCode="40"
4+
android:versionName="4.0" >
5+
6+
<uses-sdk
7+
android:minSdkVersion="14"
8+
android:targetSdkVersion="19" />
9+
10+
</manifest>

0 commit comments

Comments
 (0)