Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle update #66

Open
wants to merge 28 commits into
base: development
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ff6c0d5
Correct Kotlin spell
amitshekhariitbhu Apr 6, 2018
65fbe8f
BaseViewModel holds hard reference to Navigators which can lead to le…
legalimpurity May 19, 2018
432ffbc
Merge pull request #23 from legalimpurity/master
amitshekhariitbhu May 22, 2018
2c2371a
Update build platform
AL4AL Dec 17, 2018
560a7c5
Merge pull request #41 from professorSajjad/master
amitshekhariitbhu Dec 17, 2018
efd8fa4
Allow cleartext communication with mocky.io
vy8 Jan 8, 2019
f16a4bd
Merge pull request #42 from vytautasm/master
amitshekhariitbhu Jan 8, 2019
67658e7
Replace constraint layout with linear layout in about fragment
salmanseifian Feb 2, 2019
386ca35
Merge pull request #45 from seifian/feat/constraint-layout-as-about-p…
amitshekhariitbhu Feb 2, 2019
5225659
Add view model factory class
jyotid Feb 22, 2019
50326ec
Remove unwanted imports
jyotid Feb 22, 2019
acc8288
Merge pull request #48 from MindorksOpenSource/common_ViewModelFactory
amitshekhariitbhu Feb 22, 2019
ae41276
Add constructor injection for VMFactory
jyotid Feb 22, 2019
dfb5a89
Merge pull request #49 from MindorksOpenSource/common_ViewModelFactory
amitshekhariitbhu Feb 23, 2019
d3bb9c6
Prevent LiveData exposure to UI. Binding Livedata to recyclerview
Vignesh150493 Mar 1, 2019
186c446
Merge pull request #50 from Vignesh150493/master
amitshekhariitbhu Mar 1, 2019
b7c91c9
Moving mapping of open source response to background. More minor code…
Vignesh150493 Mar 2, 2019
1ec0678
Merge pull request #51 from Vignesh150493/master
amitshekhariitbhu Mar 2, 2019
b0b8b0d
AndroidX :smile:
Vignesh150493 Mar 5, 2019
371fe0a
Merge pull request #52 from Vignesh150493/master
amitshekhariitbhu Mar 6, 2019
86606f0
Make ViewModelProviderFactory class Singleton
jyotid Mar 8, 2019
116237f
Remove unwanted VM injection from OpenSourceFragment Module and BlogF…
jyotid Mar 11, 2019
142cf02
Remove unwanted factory injection
jyotid Mar 11, 2019
a013227
Merge pull request #55 from MindorksOpenSource/remove_unwanted_vminje…
amitshekhariitbhu Mar 11, 2019
cbd8d60
Merge pull request #56 from MindorksOpenSource/singleton_factory
amitshekhariitbhu Mar 11, 2019
bac04f3
Supporting RxJava for Room
Subuday Aug 7, 2019
595acd0
Merge pull request #64 from Subuday/master
amitshekhariitbhu Aug 7, 2019
3054c29
Gradle version Updated -> in Gradle 5.x setDestination(Object file) h…
mudassarwurfel Sep 23, 2019
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
Prev Previous commit
Gradle version Updated -> in Gradle 5.x setDestination(Object file) h…
…as been removed (destination "$yourpath" replaced with destination file("$yourpath")
mudassarwurfel committed Sep 23, 2019
commit 3054c29c5fd52e950ea01e8d8dc1069c62ff8cf0
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath 'com.android.tools.build:gradle:3.4.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
10 changes: 5 additions & 5 deletions config/quality/quality.gradle
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ task checkstyle(type: Checkstyle, group: 'Verification', description: 'Runs code
reports {
xml.enabled = true
xml {
destination "$reportsDir/checkstyle/checkstyle.xml"
destination file("$reportsDir/checkstyle/checkstyle.xml")
}
}

@@ -73,10 +73,10 @@ task findbugs(type: FindBugs,
xml.enabled = true
html.enabled = false
xml {
destination "$reportsDir/findbugs/findbugs.xml"
destination file("$reportsDir/findbugs/findbugs.xml")
}
html {
destination "$reportsDir/findbugs/findbugs.html"
destination file("$reportsDir/findbugs/findbugs.html")
}
}

@@ -98,10 +98,10 @@ task pmd(type: Pmd, group: 'Verification', description: 'Inspect sourcecode for
xml.enabled = true
html.enabled = true
xml {
destination "$reportsDir/pmd/pmd.xml"
destination file ("$reportsDir/pmd/pmd.xml")
}
html {
destination "$reportsDir/pmd/pmd.html"
destination file ("$reportsDir/pmd/pmd.html")
}
}
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 17 11:19:30 IRST 2018
#Mon Sep 23 10:04:22 PKT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip