mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 02:53:05 +00:00
Migrate all files to AAR project
This commit is contained in:
parent
4566c1855b
commit
822f498646
3
moonlight-common/.gitignore
vendored
3
moonlight-common/.gitignore
vendored
@ -1,2 +1 @@
|
||||
*.class
|
||||
/bin
|
||||
/build
|
||||
|
23
moonlight-common/build.gradle
Normal file
23
moonlight-common/build.gradle
Normal 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'])
|
||||
}
|
9
moonlight-common/src/main/AndroidManifest.xml
Normal file
9
moonlight-common/src/main/AndroidManifest.xml
Normal 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>
|
3
moonlight-common/src/main/res/values/strings.xml
Normal file
3
moonlight-common/src/main/res/values/strings.xml
Normal file
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">moonlight-common</string>
|
||||
</resources>
|
Loading…
x
Reference in New Issue
Block a user