This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from mhacks/development
Development - Mhacks 11
- Loading branch information
Showing
83 changed files
with
490 additions
and
495 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
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
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 |
---|---|---|
|
@@ -5,14 +5,13 @@ apply plugin: "kotlin-android-extensions" | |
apply plugin: "kotlin-kapt" | ||
|
||
ext { | ||
bugsnag_key = ext.MHACKS_BUGSNAG_KEY | ||
google_maps_api_key = ext.MHACKS_GOOGLE_MAPS_API_KEY | ||
gcm_server_id = ext.GCM_SERVER_ID | ||
} | ||
|
||
android { | ||
compileSdkVersion 28 | ||
buildToolsVersion '28.0.2' | ||
buildToolsVersion '28.0.3' | ||
baseFeature true | ||
dexOptions { | ||
javaMaxHeapSize "4g" | ||
|
@@ -42,45 +41,60 @@ android { | |
defaultConfig { | ||
minSdkVersion 21 | ||
targetSdkVersion 28 | ||
versionName "10.0.0" | ||
versionName "11.0.0" | ||
|
||
buildConfigField "String", "FIXED_START_DATE", "\"2018-10-12T00:00:00\"" | ||
buildConfigField "String", "INSTANT_APP_URL", "\"schedule\"" | ||
|
||
buildConfigField "String", "WIFI_SSID", "\"MHacks11\"" | ||
buildConfigField "String", "WIFI_PASSWORD", "\"anyonecancode\"" | ||
|
||
buildConfigField "String", "MHACKS_EMAIL", "\"[email protected]\"" | ||
|
||
buildConfigField "String", | ||
"SLACK_INVITE_URL", | ||
"\"https://join.slack.com/t/mhacks11/shared_invite/enQtNDQzMDI0MDY3ODQ1LTM3YTIyMmJmNjU3NGM2NDk1MzQzZjZmMmY3ZDliZmZlNTRjOGNiMTc2OWRiZjIyODBiNzk2ZGQ4YjBmMjlkZjU\"" | ||
|
||
buildConfigField 'double', 'LAT', '42.2694' | ||
buildConfigField 'double', 'LNG', '-83.7425' | ||
|
||
resValue "string", "google_maps_api_key", google_maps_api_key | ||
|
||
vectorDrawables.useSupportLibrary = true | ||
multiDexEnabled true | ||
} | ||
buildTypes { | ||
release { | ||
debuggable false | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.txt" | ||
multiDexEnabled true | ||
resValue "string", "google_maps_api_key", google_maps_api_key | ||
signingConfig signingConfigs.release | ||
|
||
buildConfigField "String", "API_URL", "\"https://mhacks.org/v1/\"" | ||
} | ||
debug { | ||
debuggable true | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.txt" | ||
resValue "string", "google_maps_api_key", google_maps_api_key | ||
|
||
|
||
buildConfigField "String", "API_URL", "\"https://staging.mhacks.org/v1/\"" | ||
} | ||
} | ||
|
||
dataBinding { | ||
enabled = true | ||
} | ||
|
||
productFlavors { | ||
|
||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(include: ['*.jar'], dir: 'libs') | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$rootProject.kotlin_version" | ||
|
||
// kapt 'androidx.databinding:databinding-compiler:3.2.0' | ||
|
||
// Play Services | ||
implementation 'com.google.firebase:firebase-core:16.0.3' | ||
implementation 'com.google.firebase:firebase-messaging:17.3.2' | ||
implementation 'com.google.firebase:firebase-core:16.0.4' | ||
implementation 'com.google.firebase:firebase-messaging:17.3.3' | ||
|
||
implementation 'androidx.appcompat:appcompat:1.0.0' | ||
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | ||
|
@@ -90,8 +104,9 @@ dependencies { | |
implementation 'com.squareup.retrofit2:converter-moshi:2.4.0' | ||
|
||
// Persistence | ||
implementation 'androidx.room:room-runtime:2.0.0-rc01' | ||
implementation 'androidx.room:room-rxjava2:2.0.0-rc01' | ||
implementation 'androidx.room:room-runtime:2.0.0' | ||
implementation 'androidx.room:room-rxjava2:2.0.0' | ||
kapt 'androidx.room:room-compiler:2.0.0' | ||
|
||
// RxJava | ||
implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' | ||
|
@@ -101,8 +116,6 @@ dependencies { | |
// Debugging | ||
implementation 'com.jakewharton.timber:timber:4.7.0' | ||
|
||
kapt 'androidx.room:room-compiler:2.0.0-rc01' | ||
|
||
feature project(':ui') | ||
} | ||
|
||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.