DanMillerDev
4 年前
当前提交
3d51358e
共有 7 个文件被更改,包括 174 次插入 和 0 次删除
-
9ProjectSettings/ProjectSettings.asset
-
8Assets/StreamingAssets.meta
-
84Assets/Plugins/Android/launcherTemplate.gradle
-
7Assets/Plugins/Android/launcherTemplate.gradle.meta
-
59Assets/Plugins/Android/mainTemplate.gradle
-
7Assets/Plugins/Android/mainTemplate.gradle.meta
|
|||
fileFormatVersion: 2 |
|||
guid: bed79f64d2c18a44697f2c1c01a1fd98 |
|||
folderAsset: yes |
|||
DefaultImporter: |
|||
externalObjects: {} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|
|||
buildscript { |
|||
repositories { |
|||
google() |
|||
jcenter() |
|||
} |
|||
dependencies { |
|||
// Must be Android Gradle Plugin 3.6.0 or later. For a list of |
|||
// compatible Gradle versions refer to: |
|||
// https://developer.android.com/studio/releases/gradle-plugin |
|||
classpath 'com.android.tools.build:gradle:3.6.0' |
|||
} |
|||
} |
|||
|
|||
allprojects { |
|||
repositories { |
|||
google() |
|||
jcenter() |
|||
flatDir { |
|||
dirs 'libs' |
|||
} |
|||
} |
|||
} |
|||
|
|||
apply plugin: 'com.android.application' |
|||
|
|||
dependencies { |
|||
implementation project(':unityLibrary') |
|||
} |
|||
|
|||
android { |
|||
compileSdkVersion **APIVERSION** |
|||
buildToolsVersion '**BUILDTOOLS**' |
|||
|
|||
compileOptions { |
|||
sourceCompatibility JavaVersion.VERSION_1_8 |
|||
targetCompatibility JavaVersion.VERSION_1_8 |
|||
} |
|||
|
|||
defaultConfig { |
|||
minSdkVersion **MINSDKVERSION** |
|||
targetSdkVersion **TARGETSDKVERSION** |
|||
applicationId '**APPLICATIONID**' |
|||
ndk { |
|||
abiFilters **ABIFILTERS** |
|||
} |
|||
versionCode **VERSIONCODE** |
|||
versionName '**VERSIONNAME**' |
|||
} |
|||
|
|||
aaptOptions { |
|||
noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**] |
|||
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~" |
|||
}**SIGN** |
|||
|
|||
lintOptions { |
|||
abortOnError false |
|||
} |
|||
|
|||
buildTypes { |
|||
debug { |
|||
minifyEnabled **MINIFY_DEBUG** |
|||
useProguard **PROGUARD_DEBUG** |
|||
proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG** |
|||
jniDebuggable true |
|||
} |
|||
release { |
|||
minifyEnabled **MINIFY_RELEASE** |
|||
useProguard **PROGUARD_RELEASE** |
|||
proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG** |
|||
} |
|||
}**PACKAGING_OPTIONS****SPLITS** |
|||
**BUILT_APK_LOCATION** |
|||
bundle { |
|||
language { |
|||
enableSplit = false |
|||
} |
|||
density { |
|||
enableSplit = false |
|||
} |
|||
abi { |
|||
enableSplit = true |
|||
} |
|||
} |
|||
}**SPLITS_VERSION_CODE****LAUNCHER_SOURCE_BUILD_SETUP** |
|
|||
fileFormatVersion: 2 |
|||
guid: a58f66645d3d2df4782967dd3f7a3db6 |
|||
DefaultImporter: |
|||
externalObjects: {} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
|
|||
buildscript { |
|||
repositories { |
|||
google() |
|||
jcenter() |
|||
} |
|||
dependencies { |
|||
// Must be Android Gradle Plugin 3.6.0 or later. For a list of |
|||
// compatible Gradle versions refer to: |
|||
// https://developer.android.com/studio/releases/gradle-plugin |
|||
classpath 'com.android.tools.build:gradle:3.6.0' |
|||
} |
|||
} |
|||
|
|||
allprojects { |
|||
repositories { |
|||
google() |
|||
jcenter() |
|||
flatDir { |
|||
dirs 'libs' |
|||
} |
|||
} |
|||
} |
|||
|
|||
apply plugin: 'com.android.library' |
|||
**APPLY_PLUGINS** |
|||
|
|||
dependencies { |
|||
implementation fileTree(dir: 'libs', include: ['*.jar']) |
|||
**DEPS**} |
|||
|
|||
android { |
|||
compileSdkVersion **APIVERSION** |
|||
buildToolsVersion '**BUILDTOOLS**' |
|||
|
|||
compileOptions { |
|||
sourceCompatibility JavaVersion.VERSION_1_8 |
|||
targetCompatibility JavaVersion.VERSION_1_8 |
|||
} |
|||
|
|||
defaultConfig { |
|||
minSdkVersion **MINSDKVERSION** |
|||
targetSdkVersion **TARGETSDKVERSION** |
|||
ndk { |
|||
abiFilters **ABIFILTERS** |
|||
} |
|||
versionCode **VERSIONCODE** |
|||
versionName '**VERSIONNAME**' |
|||
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD** |
|||
} |
|||
|
|||
lintOptions { |
|||
abortOnError false |
|||
} |
|||
|
|||
aaptOptions { |
|||
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~" |
|||
}**PACKAGING_OPTIONS** |
|||
}**REPOSITORIES****SOURCE_BUILD_SETUP** |
|||
**EXTERNAL_SOURCES** |
|
|||
fileFormatVersion: 2 |
|||
guid: fdb14a249550dc444ba83f877e7a5ba1 |
|||
DefaultImporter: |
|||
externalObjects: {} |
|||
userData: |
|||
assetBundleName: |
|||
assetBundleVariant: |
撰写
预览
正在加载...
取消
保存
Reference in new issue