Skip to content

Commit 9056cec

Browse files
author
zabuTNT
committed
first commit
0 parents  commit 9056cec

236 files changed

Lines changed: 27196 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
5+
# Files for the Dalvik VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# Generated files
12+
bin/
13+
gen/
14+
out/
15+
target/
16+
junkyard/
17+
18+
# Gradle files
19+
.gradle/
20+
build/
21+
22+
# Local configuration file (sdk path, etc)
23+
local.properties
24+
25+
# Proguard folder generated by Eclipse
26+
proguard/
27+
28+
# Log Files
29+
*.log
30+
31+
# Android Studio Navigation editor temp files
32+
.navigation/
33+
34+
# Android Studio captures folder
35+
captures/
36+
37+
# Intellij
38+
*.iml
39+
40+
# Keystore files
41+
*.jks
42+

.swagger-codegen-ignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Swagger Codegen Ignore
2+
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.swagger-codegen/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.4.28

README.md

Lines changed: 282 additions & 0 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
group = 'com.openmove.sardegna'
2+
project.version = '1.0.0'
3+
4+
buildscript {
5+
repositories {
6+
jcenter()
7+
google()
8+
mavenCentral()
9+
}
10+
dependencies {
11+
classpath 'com.android.tools.build:gradle:2.3.+'
12+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
13+
}
14+
}
15+
16+
allprojects {
17+
repositories {
18+
jcenter()
19+
}
20+
}
21+
22+
23+
apply plugin: 'com.android.library'
24+
25+
android {
26+
compileSdkVersion 25
27+
buildToolsVersion '25.0.2'
28+
defaultConfig {
29+
minSdkVersion 14
30+
targetSdkVersion 25
31+
}
32+
compileOptions {
33+
sourceCompatibility JavaVersion.VERSION_1_7
34+
targetCompatibility JavaVersion.VERSION_1_7
35+
}
36+
37+
// Rename the aar correctly
38+
libraryVariants.all { variant ->
39+
variant.outputs.each { output ->
40+
def outputFile = output.outputFile
41+
if (outputFile != null && outputFile.name.endsWith('.aar')) {
42+
def fileName = "${project.name}-${variant.baseName}-${version}.aar"
43+
output.outputFileName = fileName
44+
}
45+
}
46+
}
47+
48+
testOptions {
49+
unitTests.returnDefaultValues = true
50+
}
51+
}
52+
53+
54+
ext {
55+
swagger_annotations_version = "1.5.0"
56+
gson_version = "2.3.1"
57+
httpmime_version = "4.5.2"
58+
httpcore_version = "4.4.4"
59+
httpclient_version = "4.3.3"
60+
volley_version = "1.0.0"
61+
junit_version = "4.12"
62+
robolectric_version = "3.0"
63+
concurrent_unit_version = "0.4.2"
64+
}
65+
66+
dependencies {
67+
implementation "io.swagger:swagger-annotations:$swagger_annotations_version"
68+
implementation "com.google.code.gson:gson:$gson_version"
69+
implementation "org.apache.httpcomponents:httpcore:$httpcore_version"
70+
implementation "org.apache.httpcomponents:httpmime:$httpmime_version"
71+
implementation "org.apache.httpcomponents:httpclient-android:$httpclient_version"
72+
implementation "com.android.volley:volley:${volley_version}"
73+
testImplementation "junit:junit:$junit_version"
74+
testImplementation "org.robolectric:robolectric:${robolectric_version}"
75+
testImplementation "net.jodah:concurrentunit:${concurrent_unit_version}"
76+
}
77+
78+
afterEvaluate {
79+
android.libraryVariants.all { variant ->
80+
def task = project.tasks.create "jar${variant.name.capitalize()}", Jar
81+
task.description = "Create jar artifact for ${variant.name}"
82+
task.dependsOn variant.javaCompile
83+
task.from variant.javaCompile.destinationDir
84+
task.destinationDir = project.file("${project.buildDir}/outputs/jar")
85+
task.archiveName = "${project.name}-${variant.baseName}-${version}.jar"
86+
artifacts.add('archives', task);
87+
}
88+
}
89+
90+
task sourcesJar(type: Jar) {
91+
from android.sourceSets.main.java.srcDirs
92+
classifier = 'sources'
93+
}
94+
95+
artifacts {
96+
archives sourcesJar
97+
}

docs/ActivateTicketRequest.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
# ActivateTicketRequest
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**ticketId** | **String** | |
8+
**userId** | **String** | |
9+
10+
11+

0 commit comments

Comments
 (0)