Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.idea/
45 changes: 45 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
language: android

android:
components:
# Use the latest revision of Android SDK Tools
- tools
- platform-tools

# The BuildTools version used by your project
- build-tools-23.0.3

# The SDK version used to compile your project
- android-23

# For AppCompat
- extra

# For emulator. Cannot use x86 w/o HW acceleration, which is provided by KVM.
- sys-img-armeabi-v7a-android-23

# Emulator Management: Create, Start and Wait
before_script:
- echo no | android create avd --force -n test -t android-23 --abi default/armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
# - adb shell input keyevent 82 &

before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock

cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/

jdk:
- oraclejdk8

branches:
only:
- master

script:
- ./gradlew build check # connectedCheck to enable emulator testing
- ./gradlew clean build
181 changes: 181 additions & 0 deletions GYAppAnd.iml

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.android.tools.build:gradle:2.1.0'
}
}

Expand All @@ -22,14 +22,14 @@ allprojects {
}

android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc2"
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileOptions.encoding = "windows-1254"

defaultConfig {
applicationId "com.turkcell.gelecegiyazanlar"
minSdkVersion 15
targetSdkVersion 22
targetSdkVersion 23
versionCode 3
versionName "1.2"
}
Expand All @@ -43,17 +43,17 @@ android {

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'eu.the4thfloor.volley:com.android.volley:2015.05.28'
compile 'de.hdodenhof:circleimageview:1.3.0'
compile 'com.android.support:cardview-v7:22.2.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile 'com.getbase:floatingactionbutton:1.10.0'
compile 'com.android.support:design:22.2.0'
compile 'com.android.support:design:23.4.0'
compile files('libs/curiosdk.jar')
compile 'com.google.android.gms:play-services:7.8.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.splunk.mint:mint:4.4.0'

}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 7 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#Mon Dec 28 10:00:20 PST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
org.gradle.jvmargs=-Xmx2048M
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
160 changes: 160 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 90 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading