-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnityExported.py
134 lines (105 loc) · 3.91 KB
/
UnityExported.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
from Variable import *
androidManifestPath = projectUnityExportPath+r"\unityLibrary\src\main\AndroidManifest.xml"
launcherPath = projectUnityExportPath+r"\launcher\build.gradle"
unityLibrarypath = projectUnityExportPath+r"\unityLibrary\build.gradle"
gradlePropertiesPath = projectUnityExportPath+r"\gradle.properties"
localPropertiesPath = projectUnityExportPath+r"\local.properties"
def launcherBuildGradle():
launcherGradle = open(launcherPath, 'r')
replaceElementList = ["bundle {", "language {",
"enableSplit = false",
"density {",
"enableSplit = false",
"abi {",
"enableSplit = true"]
new_file_content = ""
endcorner = False
lastEndCorner = False
for line in launcherGradle:
stripped_line = line.strip()
if "com.android.application" in stripped_line:
new_line = stripped_line.replace("com.android.application", "com.android.library")
elif "buildToolsVersion" in stripped_line:
new_line = ""
elif "applicationId" in stripped_line:
new_line = ""
elif stripped_line in replaceElementList:
if "abi {" in replaceElementList:
lastEndCorner = True
new_line = ""
endcorner = True
elif "}" in stripped_line and endcorner:
new_line = ""
endcorner = False
elif lastEndCorner:
new_line = ""
lastEndCorner = False
else:
new_line = stripped_line
new_file_content += new_line +"\n"
launcherGradle.close()
writing_file = open(launcherPath, "w")
writing_file.write(new_file_content)
writing_file.close()
def unityLibraryBuildGradle():
unityLibraryGradle = open(unityLibrarypath, 'r')
new_file_content = ""
for line in unityLibraryGradle:
stripped_line = line.strip()
if "buildToolsVersion" in stripped_line:
new_line = ""
else:
new_line = stripped_line
new_file_content += new_line +"\n"
unityLibraryGradle.close()
writing_file = open(unityLibrarypath, "w")
writing_file.write(new_file_content)
writing_file.close()
def gradleProperties():
gradleProperties = open(gradlePropertiesPath, 'r')
new_file_content = ""
for line in gradleProperties:
stripped_line = line.strip()
if "unityStreamingAssets" in stripped_line:
new_line = "unityStreamingAssets=.json"
elif "android.enableR8" in stripped_line:
new_line = ""
else:
new_line = stripped_line
new_file_content += new_line +"\n"
gradleProperties.close()
writing_file = open(gradlePropertiesPath, "w")
writing_file.write(new_file_content)
writing_file.close()
def unityLibraryAndroidManifest():
androidManifest = open(androidManifestPath, 'r')
replaceElementList = [
"<intent-filter>",
"""<action android:name="android.intent.action.MAIN" />""",
"""<category android:name="android.intent.category.LAUNCHER" />""",
"</intent-filter>",
]
new_file_content = ""
for line in androidManifest:
stripped_line = line.strip()
if "com.unity3d.player.UnityPlayerActivity" in stripped_line:
new_line = stripped_line.replace(">","""\nandroid:process=":unityplayer">""")
elif stripped_line in replaceElementList:
new_line = ""
else:
new_line = stripped_line
new_file_content += new_line +"\n"
androidManifest.close()
writing_file = open(androidManifestPath, "w")
writing_file.write(new_file_content)
writing_file.close()
def localProperties():
file = open(localPropertiesPath, 'a')
file.write("\n"+"ndk.dir="+unityNDKPath)
file.close()
unityLibraryAndroidManifest()
launcherBuildGradle()
unityLibraryBuildGradle()
gradleProperties()
if isunityProjectDifferentPC:
localProperties()