Skip to content

Commit 412856e

Browse files
committed
added unity client
1 parent b71225e commit 412856e

36 files changed

+2541
-47
lines changed

.DS_Store

6 KB
Binary file not shown.

DroidClient/app/build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ android {
88
targetSdkVersion 28
99
versionCode 1
1010
versionName "1.0"
11-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1211
}
1312
buildTypes {
1413
release {
@@ -22,8 +21,5 @@ dependencies {
2221
implementation fileTree(include: ['*.jar'], dir: 'libs')
2322
implementation 'com.android.support:appcompat-v7:28.0.0'
2423
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
25-
testImplementation 'junit:junit:4.12'
26-
androidTestImplementation 'com.android.support.test:runner:1.0.2'
27-
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
2824
implementation project(':unitysharing')
2925
}

DroidClient/app/src/androidTest/java/com/agrawalsuneet/droidclient/ExampleInstrumentedTest.java

Lines changed: 0 additions & 26 deletions
This file was deleted.

DroidClient/app/src/test/java/com/agrawalsuneet/droidclient/ExampleUnitTest.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

UnityClient/.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# This .gitignore file should be placed at the root of your Unity project directory
2+
#
3+
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
4+
#
5+
/[Ll]ibrary/
6+
/[Tt]emp/
7+
/[Oo]bj/
8+
/[Bb]uild/
9+
/[Bb]uilds/
10+
/[Ll]ogs/
11+
/[Mm]emoryCaptures/
12+
13+
# Never ignore Asset meta data
14+
!/[Aa]ssets/**/*.meta
15+
16+
# Uncomment this line if you wish to ignore the asset store tools plugin
17+
# /[Aa]ssets/AssetStoreTools*
18+
19+
# TextMesh Pro files
20+
[Aa]ssets/TextMesh*Pro/
21+
22+
# Autogenerated Jetbrains Rider plugin
23+
[Aa]ssets/Plugins/Editor/JetBrains*
24+
25+
# Visual Studio cache directory
26+
.vs/
27+
28+
# Gradle cache directory
29+
.gradle/
30+
31+
# Autogenerated VS/MD/Consulo solution and project files
32+
ExportedObj/
33+
.consulo/
34+
*.csproj
35+
*.unityproj
36+
*.sln
37+
*.suo
38+
*.tmp
39+
*.user
40+
*.userprefs
41+
*.pidb
42+
*.booproj
43+
*.svd
44+
*.pdb
45+
*.mdb
46+
*.opendb
47+
*.VC.db
48+
49+
# Unity3D generated meta files
50+
*.pidb.meta
51+
*.pdb.meta
52+
*.mdb.meta
53+
54+
# Unity3D generated file on crash reports
55+
sysinfo.txt
56+
57+
# Builds
58+
*.apk
59+
*.unitypackage
60+
61+
# Crashlytics generated file
62+
crashlytics-build.properties

UnityClient/Assets/Plugins.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UnityClient/Assets/Plugins/Android.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
2+
3+
buildscript {
4+
repositories {
5+
google()
6+
jcenter()
7+
}
8+
9+
dependencies {
10+
classpath 'com.android.tools.build:gradle:3.2.0'
11+
**BUILD_SCRIPT_DEPS**}
12+
}
13+
14+
allprojects {
15+
repositories {
16+
google()
17+
jcenter()
18+
flatDir {
19+
dirs 'libs'
20+
}
21+
}
22+
}
23+
24+
apply plugin: 'com.android.application'
25+
**APPLY_PLUGINS**
26+
27+
dependencies {
28+
implementation fileTree(dir: 'libs', include: ['*.jar'])
29+
**DEPS**}
30+
31+
android {
32+
compileSdkVersion **APIVERSION**
33+
buildToolsVersion '**BUILDTOOLS**'
34+
35+
compileOptions {
36+
sourceCompatibility JavaVersion.VERSION_1_8
37+
targetCompatibility JavaVersion.VERSION_1_8
38+
}
39+
40+
defaultConfig {
41+
minSdkVersion **MINSDKVERSION**
42+
targetSdkVersion **TARGETSDKVERSION**
43+
applicationId '**APPLICATIONID**'
44+
ndk {
45+
abiFilters **ABIFILTERS**
46+
}
47+
versionCode **VERSIONCODE**
48+
versionName '**VERSIONNAME**'
49+
}
50+
51+
lintOptions {
52+
abortOnError false
53+
}
54+
55+
aaptOptions {
56+
noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]
57+
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
58+
}**SIGN**
59+
60+
buildTypes {
61+
debug {
62+
minifyEnabled **MINIFY_DEBUG**
63+
useProguard **PROGUARD_DEBUG**
64+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
65+
jniDebuggable true
66+
}
67+
release {
68+
minifyEnabled **MINIFY_RELEASE**
69+
useProguard **PROGUARD_RELEASE**
70+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
71+
}
72+
}**PACKAGING_OPTIONS****SPLITS**
73+
**BUILT_APK_LOCATION**
74+
**EXTERNAL_SOURCES**
75+
bundle {
76+
language {
77+
enableSplit = false
78+
}
79+
density {
80+
enableSplit = false
81+
}
82+
abi {
83+
enableSplit = true
84+
}
85+
}
86+
}**SPLITS_VERSION_CODE****REPOSITORIES****SOURCE_BUILD_SETUP**

UnityClient/Assets/Plugins/Android/mainTemplate.gradle.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
16 KB
Binary file not shown.

0 commit comments

Comments
 (0)