Skip to content

Commit

Permalink
Initial code
Browse files Browse the repository at this point in the history
Entry point to go ubiquitous project, prior commits are related to sunshine-v2 project (app module) - mobile app
  • Loading branch information
Protino committed Feb 25, 2017
1 parent 7e8ec43 commit fd950cd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1,993 deletions.
41 changes: 25 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
compileSdkVersion 25
buildToolsVersion "25.0.2"

defaultConfig {
applicationId "com.calgen.prodek.sunshine_v2"
minSdkVersion 11
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
multiDexEnabled true
Expand All @@ -25,23 +25,32 @@ android {
}
}

ext{
supportLibraryVersion = "25.0.1"
firebaseLibraryVersion = "9.8.0"
playServicesVersion = "9.8.0"
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.android.support:design:23.2.0'
compile 'com.android.support:support-v4:23.2.0'
compile 'com.android.support:support-annotations:23.2.0'
compile 'com.github.bumptech.glide:glide:3.5.2'
compile 'com.google.firebase:firebase-core:9.8.0'
compile 'com.google.firebase:firebase-messaging:9.8.0'
compile 'com.android.support:gridlayout-v7:23.2.0'
//cardview and recycler view
compile 'com.android.support:cardview-v7:23.2.0'
compile 'com.android.support:recyclerview-v7:23.2.0'

//support library
compile "com.android.support:appcompat-v7:${supportLibraryVersion}"
compile "com.android.support:design:${supportLibraryVersion}"
compile "com.android.support:support-v4:${supportLibraryVersion}"
compile "com.android.support:support-annotations:${supportLibraryVersion}"
compile "com.android.support:gridlayout-v7:${supportLibraryVersion}"
compile "com.android.support:recyclerview-v7:${supportLibraryVersion}"
compile "com.android.support:cardview-v7:${supportLibraryVersion}"

compile files('libs/muzei-api-2.0.jar')
compile 'com.google.android.gms:play-services-places:9.8.0'
compile 'com.google.android.gms:play-services-gcm:9.8.0'
compile 'com.github.bumptech.glide:glide:3.5.2'

compile "com.google.firebase:firebase-core:${firebaseLibraryVersion}"
compile "com.google.firebase:firebase-messaging:${firebaseLibraryVersion}"
compile "com.google.android.gms:play-services-places:${playServicesVersion}"
compile "com.google.android.gms:play-services-gcm:${playServicesVersion}"
}


Expand Down
Loading

0 comments on commit fd950cd

Please sign in to comment.