Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammed Emin Ayar committed Dec 31, 2017
0 parents commit 5b04c47
Show file tree
Hide file tree
Showing 480 changed files with 30,466 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.externalNativeBuild
22 changes: 22 additions & 0 deletions .idea/compiler.xml

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

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

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

19 changes: 19 additions & 0 deletions .idea/gradle.xml

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

3 changes: 3 additions & 0 deletions .idea/markdown-navigator/profiles_settings.xml

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

115 changes: 115 additions & 0 deletions .idea/misc.xml

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

10 changes: 10 additions & 0 deletions .idea/modules.xml

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

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

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

6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
Binary file added app/app-release.apk
Binary file not shown.
116 changes: 116 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'realm-android'

repositories {
maven { url 'https://maven.fabric.io/public' }
}


android {
compileSdkVersion 25
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.happycoderz.cryptofolio"
minSdkVersion 16
multiDexEnabled = true
targetSdkVersion 25
versionCode 12
versionName "0.0.2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
buildConfigField "String", "BASE_URL", "\"https://api.coinmarketcap.com/v1/\""
buildConfigField "String", "GRAPH_BASE_URL",
"\"https://cryptocoincharts.info/fast/2f_period" + ".php/\"";
buildConfigField "String", "ICO_BASE_URL", "\"https://api.icowatchlist.com/public/v1/\""
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
versionNameSuffix "-DEBUG"
}
}
}

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '25.3.1'
}
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile('com.crashlytics.sdk.android:crashlytics:2.8.0@aar') {
transitive = true;
}
compile('com.crashlytics.sdk.android:answers:1.4.1@aar') {
transitive = true;
}
compile project(':chat-sdk-ui')
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:multidex:1.0.1'
compile 'com.arello-mobile:moxy:1.5.3'
compile 'com.github.PhilJay:MPAndroidChart:v2.1.6'
compile 'com.arello-mobile:moxy-app-compat:1.5.3'
compile 'com.jakewharton:butterknife:8.8.1'
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'io.reactivex.rxjava2:rxjava:2.1.5'
compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.okhttp3:okhttp:3.2.0'
compile 'com.squareup.okio:okio:1.7.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
compile 'com.google.code.gson:gson:2.8.2'
compile 'com.squareup.retrofit2:converter-gson:2.0.1'
compile 'com.afollestad.material-dialogs:core:0.9.4.3'
compile 'uk.co.chrisjenx:calligraphy:2.3.0'
compile 'gun0912.ted:tedpermission-rx2:2.0.3'
compile 'com.github.arimorty:floatingsearchview:2.1.1'
compile 'com.pnikosis:materialish-progress:1.7'
compile 'org.solovyev.android:checkout:1.2.1'
compile 'co.chatsdk.chatsdk:chat-sdk-core:4.0.6'
compile 'com.shehabic.droppy:Droppy:0.6.0@aar'
compile 'de.hdodenhof:circleimageview:2.2.0'
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-adapter:4.0.6'
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-file-storage:4.0.6'
compile 'co.chatsdk.chatsdk:chat-sdk-firebase-push:4.0.6'
compile 'com.github.hotchemi:android-rate:1.0.1'
compile 'com.google.firebase:firebase-ads:10.0.1'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
compile 'com.evernote:android-job:1.1.8'
compile 'io.realm:android-adapters:2.1.1'
compile 'com.android.support:support-core-ui:25.3.1'
compile 'com.duolingo.open:rtl-viewpager:1.0.2'
compile 'com.facebook.android:audience-network-sdk:4.+'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.yalantis:contextmenu:1.0.7'
testCompile 'junit:junit:4.12'
annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
}

apply plugin: 'com.google.gms.google-services'
3 changes: 3 additions & 0 deletions app/fabric.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Contains API Secret used to validate your application. Commit to internal source control; avoid making secret public.
#Fri Dec 08 01:18:09 EET 2017
apiSecret=6ff85e3d08d642df37a43c9984e52dafcbc1c5b18d697ed0f35f952342498a36
55 changes: 55 additions & 0 deletions app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"project_info": {
"project_number": "422718333245",
"firebase_url": "https://cryptfolio-a62c6.firebaseio.com",
"project_id": "cryptfolio-a62c6",
"storage_bucket": "cryptfolio-a62c6.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:422718333245:android:a068e1c17b0198f8",
"android_client_info": {
"package_name": "com.happycoderz.cryptofolio"
}
},
"oauth_client": [
{
"client_id": "422718333245-j9k9tp9tatg7356v3a8tr7t5qpetd3at.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.happycoderz.cryptofolio",
"certificate_hash": "eb4bd55b3129b1be395d498b3c5c5d80a3d1986b"
}
},
{
"client_id": "422718333245-k9gi6ch2afogaf0nuqtcltsboiqpb1ja.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyA5lz04hfIk-P8DgGttr-0au03YOSiDbng"
}
],
"services": {
"analytics_service": {
"status": 1
},
"appinvite_service": {
"status": 2,
"other_platform_oauth_client": [
{
"client_id": "422718333245-k9gi6ch2afogaf0nuqtcltsboiqpb1ja.apps.googleusercontent.com",
"client_type": 3
}
]
},
"ads_service": {
"status": 2
}
}
}
],
"configuration_version": "1"
}
Binary file added app/keystore.jks
Binary file not shown.
Loading

0 comments on commit 5b04c47

Please sign in to comment.