Migrate all files to AAR project

This commit is contained in:
Cameron Gutman 2017-05-12 17:53:55 -07:00
parent 4566c1855b
commit 822f498646
54 changed files with 36 additions and 2 deletions

View File

@ -1,2 +1 @@
*.class /build
/bin

View File

@ -0,0 +1,23 @@
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

View File

@ -0,0 +1,9 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.moonlight-stream.moonlight_common">
<application android:allowBackup="true" android:label="@string/app_name"
android:supportsRtl="true">
</application>
</manifest>

View File

@ -0,0 +1,3 @@
<resources>
<string name="app_name">moonlight-common</string>
</resources>