Skip to content

Commit 281047c

Browse files
setup unity version 2020.3.44f1
1 parent 0780787 commit 281047c

30 files changed

+1862
-159
lines changed

Assets/Plugins.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN-->
3+
<manifest
4+
xmlns:android="http://schemas.android.com/apk/res/android"
5+
package="com.unity3d.player"
6+
xmlns:tools="http://schemas.android.com/tools">
7+
<application>
8+
<activity android:name="com.unity3d.player.UnityPlayerActivity"
9+
android:theme="@style/UnityThemeSelector">
10+
<intent-filter>
11+
<action android:name="android.intent.action.MAIN" />
12+
<category android:name="android.intent.category.LAUNCHER" />
13+
</intent-filter>
14+
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
15+
</activity>
16+
</application>
17+
</manifest>

Assets/Plugins/Android/AndroidManifest.xml.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN-->
3+
<manifest
4+
xmlns:android="http://schemas.android.com/apk/res/android"
5+
package="com.unity3d.player"
6+
xmlns:tools="http://schemas.android.com/tools"
7+
android:installLocation="preferExternal">
8+
<supports-screens
9+
android:smallScreens="true"
10+
android:normalScreens="true"
11+
android:largeScreens="true"
12+
android:xlargeScreens="true"
13+
android:anyDensity="true"/>
14+
15+
<application android:extractNativeLibs="true"
16+
android:label="@string/app_name"
17+
android:icon="@mipmap/app_icon"/>
18+
</manifest>

Assets/Plugins/Android/LauncherManifest.xml.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
org.gradle.jvmargs=-Xmx**JVM_HEAP_SIZE**M
2+
org.gradle.parallel=true
3+
android.enableR8=**MINIFY_WITH_R_EIGHT**
4+
unityStreamingAssets=.unity3d**STREAMING_ASSETS**
5+
**ADDITIONAL_PROPERTIES**

Assets/Plugins/Android/gradleTemplate.properties.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
2+
3+
apply plugin: 'com.android.application'
4+
5+
dependencies {
6+
implementation project(':unityLibrary')
7+
}
8+
9+
android {
10+
compileSdkVersion **APIVERSION**
11+
buildToolsVersion '**BUILDTOOLS**'
12+
13+
compileOptions {
14+
sourceCompatibility JavaVersion.VERSION_1_8
15+
targetCompatibility JavaVersion.VERSION_1_8
16+
}
17+
18+
defaultConfig {
19+
minSdkVersion **MINSDKVERSION**
20+
targetSdkVersion **TARGETSDKVERSION**
21+
applicationId '**APPLICATIONID**'
22+
ndk {
23+
abiFilters **ABIFILTERS**
24+
}
25+
versionCode **VERSIONCODE**
26+
versionName '**VERSIONNAME**'
27+
}
28+
29+
aaptOptions {
30+
noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
31+
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
32+
}**SIGN**
33+
34+
lintOptions {
35+
abortOnError false
36+
}
37+
38+
buildTypes {
39+
debug {
40+
minifyEnabled **MINIFY_DEBUG**
41+
proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG**
42+
jniDebuggable true
43+
}
44+
release {
45+
minifyEnabled **MINIFY_RELEASE**
46+
proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG**
47+
}
48+
}**PACKAGING_OPTIONS****PLAY_ASSET_PACKS****SPLITS**
49+
**BUILT_APK_LOCATION**
50+
bundle {
51+
language {
52+
enableSplit = false
53+
}
54+
density {
55+
enableSplit = false
56+
}
57+
abi {
58+
enableSplit = true
59+
}
60+
}
61+
}**SPLITS_VERSION_CODE****LAUNCHER_SOURCE_BUILD_SETUP**

Assets/Plugins/Android/launcherTemplate.gradle.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+9-89
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,12 @@
11
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
22

3-
buildscript {
4-
repositories {
5-
mavenCentral()
6-
google()
7-
jcenter()
8-
}
9-
10-
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.4.0'
12-
**BUILD_SCRIPT_DEPS**}
13-
}
14-
15-
allprojects {
16-
repositories {
17-
mavenCentral()
18-
google()
19-
jcenter()
20-
flatDir {
21-
dirs 'libs'
22-
}
23-
}
24-
}
25-
26-
// Android Resolver Repos Start
27-
([rootProject] + (rootProject.subprojects as List)).each { project ->
28-
project.repositories {
29-
def unityProjectPath = $/file:///**DIR_UNITYPROJECT**/$.replace("\\", "/")
30-
maven {
31-
url "https://maven.google.com"
32-
}
33-
maven {
34-
url "https://packages.namiml.com/NamiSDK/Android/" // Assets/Nami/Editor/NamiDependencies.xml:13
35-
}
36-
maven {
37-
url "https://jitpack.io" // Assets/Nami/Editor/NamiDependencies.xml:13
38-
}
39-
maven {
40-
url "https://maven.google.com" // Assets/Nami/Editor/NamiDependencies.xml:42
41-
}
42-
mavenLocal()
43-
mavenCentral()
44-
}
45-
}
46-
// Android Resolver Repos End
47-
apply plugin: 'com.android.application'
3+
apply plugin: 'com.android.library'
484
**APPLY_PLUGINS**
495

506
dependencies {
517
implementation fileTree(dir: 'libs', include: ['*.jar'])
52-
// Android Resolver Dependencies Start
53-
implementation 'com.namiml:sdk-android:3.0.5' // Assets/Nami/Editor/NamiDependencies.xml:42
54-
// Android Resolver Dependencies End
558
**DEPS**}
569

57-
// Android Resolver Exclusions Start
58-
android {
59-
packagingOptions {
60-
exclude ('/lib/arm64-v8a/*' + '*')
61-
exclude ('/lib/armeabi/*' + '*')
62-
exclude ('/lib/mips/*' + '*')
63-
exclude ('/lib/mips64/*' + '*')
64-
exclude ('/lib/x86_64/*' + '*')
65-
}
66-
}
67-
// Android Resolver Exclusions End
6810
android {
6911
compileSdkVersion **APIVERSION**
7012
buildToolsVersion '**BUILDTOOLS**'
@@ -77,45 +19,23 @@ android {
7719
defaultConfig {
7820
minSdkVersion **MINSDKVERSION**
7921
targetSdkVersion **TARGETSDKVERSION**
80-
applicationId '**APPLICATIONID**'
8122
ndk {
8223
abiFilters **ABIFILTERS**
8324
}
8425
versionCode **VERSIONCODE**
8526
versionName '**VERSIONNAME**'
27+
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
8628
}
8729

8830
lintOptions {
8931
abortOnError false
9032
}
9133

9234
aaptOptions {
93-
noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]
94-
}**SIGN**
95-
96-
buildTypes {
97-
debug {
98-
minifyEnabled **MINIFY_DEBUG**
99-
useProguard **PROGUARD_DEBUG**
100-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
101-
jniDebuggable true
102-
}
103-
release {
104-
minifyEnabled **MINIFY_RELEASE**
105-
useProguard **PROGUARD_RELEASE**
106-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
107-
}
108-
}**PACKAGING_OPTIONS****SPLITS**
109-
**BUILT_APK_LOCATION**
110-
bundle {
111-
language {
112-
enableSplit = false
113-
}
114-
density {
115-
enableSplit = false
116-
}
117-
abi {
118-
enableSplit = true
119-
}
120-
}
121-
}**SPLITS_VERSION_CODE****REPOSITORIES****SOURCE_BUILD_SETUP**
35+
noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
36+
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
37+
}**PACKAGING_OPTIONS**
38+
}**REPOSITORIES**
39+
**IL_CPP_BUILD_SETUP**
40+
**SOURCE_BUILD_SETUP**
41+
**EXTERNAL_SOURCES**

Assets/Plugins/Android/mainTemplate.gradle.meta

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Plugins/iOS.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Resources.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Resources/BillingMode.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"androidStore":"GooglePlay"}

Assets/Resources/BillingMode.json.meta

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Scenes.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/StreamingAssets.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Packages/manifest.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
{
22
"dependencies": {
3-
"com.unity.ads": "2.0.8",
4-
"com.unity.analytics": "3.2.3",
5-
"com.unity.collab-proxy": "1.2.15",
6-
"com.unity.package-manager-ui": "2.0.8",
7-
"com.unity.purchasing": "2.0.3",
8-
"com.unity.textmeshpro": "1.4.1",
3+
"com.unity.2d.sprite": "1.0.0",
4+
"com.unity.2d.tilemap": "1.0.0",
5+
"com.unity.collab-proxy": "2.0.0",
6+
"com.unity.ide.rider": "3.0.18",
7+
"com.unity.ide.visualstudio": "2.0.17",
8+
"com.unity.ide.vscode": "1.2.5",
9+
"com.unity.test-framework": "1.1.31",
10+
"com.unity.textmeshpro": "3.0.6",
11+
"com.unity.ugui": "1.0.0",
912
"com.unity.modules.ai": "1.0.0",
13+
"com.unity.modules.androidjni": "1.0.0",
1014
"com.unity.modules.animation": "1.0.0",
1115
"com.unity.modules.assetbundle": "1.0.0",
1216
"com.unity.modules.audio": "1.0.0",

0 commit comments

Comments
 (0)