-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Francesco Vasco
committed
Jul 19, 2017
1 parent
df7114b
commit 7c890cb
Showing
33 changed files
with
1,513 additions
and
1,828 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
.gradle | ||
.* | ||
!.git* | ||
/local.properties | ||
/.idea/workspace.xml | ||
/.idea/libraries | ||
.DS_Store | ||
/build | ||
build | ||
/captures | ||
.svn | ||
build_resources | ||
deployment | ||
/.project | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,50 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 23 | ||
buildToolsVersion "23.0.3" | ||
|
||
defaultConfig { | ||
applicationId "com.lightstreamer.simple_demo.android" | ||
minSdkVersion 10 | ||
targetSdkVersion 22 | ||
versionCode 12 | ||
versionName "2.1.0" | ||
} | ||
/*signingConfigs { | ||
release { | ||
storeFile file(System.getenv("KSTORE")) | ||
storePassword System.getenv("KSTOREPWD") | ||
keyAlias "LS" | ||
keyPassword System.getenv("KEYPWD") | ||
} | ||
}*/ | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
// signingConfig signingConfigs.release | ||
} | ||
} | ||
packagingOptions { | ||
pickFirst 'build.number' | ||
pickFirst 'version.number' | ||
pickFirst 'compatibility_version.number' | ||
exclude 'META-INF/INDEX.LIST' | ||
exclude 'META-INF/io.netty.versions.properties' | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:22.2.0' | ||
compile 'com.androidplot:androidplot-core:0.6.1' | ||
compile 'com.lightstreamer:ls-android-client:3.0.0' | ||
} | ||
apply plugin: 'com.android.application' | ||
apply plugin: 'kotlin-android' | ||
|
||
android { | ||
compileSdkVersion 22 | ||
buildToolsVersion '25.0.0' | ||
|
||
defaultConfig { | ||
applicationId "com.lightstreamer.simple_demo.android" | ||
minSdkVersion 10 | ||
targetSdkVersion 22 | ||
versionCode 12 | ||
versionName "2.1.0" | ||
} | ||
/*signingConfigs { | ||
release { | ||
storeFile file(System.getenv("KSTORE")) | ||
storePassword System.getenv("KSTOREPWD") | ||
keyAlias "LS" | ||
keyPassword System.getenv("KEYPWD") | ||
} | ||
}*/ | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
// signingConfig signingConfigs.release | ||
} | ||
} | ||
packagingOptions { | ||
pickFirst 'build.number' | ||
pickFirst 'version.number' | ||
pickFirst 'compatibility_version.number' | ||
exclude 'META-INF/INDEX.LIST' | ||
exclude 'META-INF/io.netty.versions.properties' | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | ||
compile 'com.android.support:appcompat-v7:22.2.0' | ||
compile 'com.androidplot:androidplot-core:0.6.1' | ||
compile 'com.lightstreamer:ls-android-client:3.1.3' | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
maven { url "http://www.lightstreamer.com/repo/maven" } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in C:\Users\Mone\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the proguardFiles | ||
# directive in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
# Add any project specific keep options here: | ||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in C:\Users\Mone\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the proguardFiles | ||
# directive in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# Add any project specific keep options here: | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} |
Oops, something went wrong.