Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit 6f443eb

Browse files
author
Kirill Rozov
committed
Initial commit.
1 parent 4bbd791 commit 6f443eb

File tree

101 files changed

+5124
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+5124
-0
lines changed

.gitignore

+176
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#################
33+
## Visual Studio
34+
#################
35+
36+
## Ignore Visual Studio temporary files, build results, and
37+
## files generated by popular Visual Studio add-ons.
38+
39+
# User-specific files
40+
*.suo
41+
*.user
42+
*.sln.docstates
43+
44+
# Build results
45+
[Dd]ebug/
46+
[Rr]elease/
47+
*_i.c
48+
*_p.c
49+
*.ilk
50+
*.obj
51+
*.pch
52+
#*.pdb
53+
*.pgc
54+
*.pgd
55+
*.rsp
56+
*.sbr
57+
*.tlb
58+
*.tli
59+
*.tlh
60+
*.vspscc
61+
.builds
62+
*.dotCover
63+
64+
## TODO: If you have NuGet Package Restore enabled, uncomment this
65+
#packages/
66+
67+
# Visual C++ cache files
68+
ipch/
69+
*.aps
70+
*.ncb
71+
*.opensdf
72+
*.sdf
73+
74+
# Visual Studio profiler
75+
*.psess
76+
*.vsp
77+
78+
# ReSharper is a .NET coding add-in
79+
_ReSharper*
80+
81+
# Installshield output folder
82+
[Ee]xpress
83+
84+
# DocProject is a documentation generator add-in
85+
DocProject/buildhelp/
86+
DocProject/Help/*.HxT
87+
DocProject/Help/*.HxC
88+
DocProject/Help/*.hhc
89+
DocProject/Help/*.hhk
90+
DocProject/Help/*.hhp
91+
DocProject/Help/Html2
92+
DocProject/Help/html
93+
94+
# Click-Once directory
95+
publish
96+
97+
# Others
98+
[Bb]in
99+
[Oo]bj
100+
sql
101+
TestResults
102+
*.Cache
103+
ClientBin
104+
stylecop.*
105+
~$*
106+
*.dbmdl
107+
Generated_Code #added for RIA/Silverlight projects
108+
109+
# Backup & report files from converting an old project file to a newer
110+
# Visual Studio version. Backup files are not needed, because we have git ;-)
111+
_UpgradeReport_Files/
112+
Backup*/
113+
UpgradeLog*.XML
114+
115+
116+
117+
############
118+
## Windows
119+
############
120+
121+
# Windows image file caches
122+
Thumbs.db
123+
124+
# Folder config file
125+
Desktop.ini
126+
127+
128+
#############
129+
## Python
130+
#############
131+
132+
*.py[co]
133+
134+
# Packages
135+
*.egg
136+
*.egg-info
137+
dist
138+
build
139+
eggs
140+
parts
141+
bin
142+
var
143+
sdist
144+
develop-eggs
145+
.installed.cfg
146+
147+
# Installer logs
148+
pip-log.txt
149+
150+
# Unit test / coverage reports
151+
.coverage
152+
.tox
153+
154+
#Translations
155+
*.mo
156+
157+
#Mr Developer
158+
.mr.developer.cfg
159+
160+
#OSx
161+
.DS_Store
162+
163+
# Android Studio (InteliJ)
164+
.idea/
165+
/.idea/workspace.xml
166+
*.iml
167+
*.iws
168+
*.ipr
169+
/*/out
170+
/*/build
171+
/*/*/production
172+
173+
#Gradle
174+
.gradletasknamecache
175+
.gradle/
176+
build/

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "OpenIAB"]
2+
path = OpenIAB
3+
url = https://github.com/onepf/OpenIAB.git

OpenIAB

Submodule OpenIAB added at 4c3a890

OpenIAB-Unity-Plugin.iml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
3+
<component name="FacetManager">
4+
<facet type="java-gradle" name="Java-Gradle">
5+
<configuration>
6+
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
7+
</configuration>
8+
</facet>
9+
</component>
10+
<component name="NewModuleRootManager" inherit-compiler-output="true">
11+
<exclude-output />
12+
<content url="file://$MODULE_DIR$">
13+
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
14+
</content>
15+
<orderEntry type="jdk" jdkName="JDK" jdkType="JavaSDK" />
16+
<orderEntry type="sourceFolder" forTests="false" />
17+
</component>
18+
</module>
19+

build.gradle

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
task wrapper(type: Wrapper) {
2+
gradleVersion = '1.12'
3+
}
4+
5+
buildscript {
6+
repositories {
7+
jcenter()
8+
}
9+
10+
dependencies {
11+
classpath 'com.android.tools.build:gradle:0.12.+'
12+
}
13+
}
14+
15+
allprojects {
16+
repositories {
17+
jcenter()
18+
}
19+
20+
ext {
21+
compileSdkVersion = 19
22+
buildToolsVersion = "20.0.0"
23+
minSdkVersion = 8
24+
targetSdkVersion = 19
25+
}
26+
}

gradle/wrapper/gradle-wrapper.jar

50.1 KB
Binary file not shown.
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sun Jul 27 09:40:33 FET 2014
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-all.zip

0 commit comments

Comments
 (0)