Skip to content

Commit fd15159

Browse files
author
Mahesh
committed
Adding Download Images with Async Task
1 parent 1b95280 commit fd15159

File tree

119 files changed

+2490
-187
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+2490
-187
lines changed
-536 Bytes
Binary file not shown.

ActivityExamples/.idea/misc.xml

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ActivityExamples/app/build.gradle

Lines changed: 29 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ repositories {
1616

1717

1818
android {
19-
compileSdkVersion 25
20-
buildToolsVersion "25.0.0"
19+
compileSdkVersion 27
20+
buildToolsVersion '28.0.2'
2121
defaultConfig {
2222
applicationId "com.example.mahesha.activityexamples"
2323
minSdkVersion 18
24-
targetSdkVersion 25
24+
targetSdkVersion 27
2525
versionCode 2
2626
versionName "1.0"
2727
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@@ -60,33 +60,31 @@ android {
6060
}
6161

6262
dependencies {
63-
compile fileTree(include: ['*.jar'], dir: 'libs')
64-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
65-
exclude group: 'com.android.support', module: 'support-annotations'
66-
})
67-
compile('com.crashlytics.sdk.android:crashlytics:2.6.7@aar') {
68-
transitive = true;
69-
}
70-
compile 'com.android.support:appcompat-v7:25.0.1'
71-
compile 'com.google.android.gms:play-services-maps:9.2.1'
72-
compile 'com.android.support:support-v4:25.0.1'
73-
compile 'com.android.support:design:25.0.1'
74-
compile 'com.weiwangcn.betterspinner:library-material:1.1.0'
75-
compile 'com.google.android.gms:play-services-auth:9.2.1'
76-
compile 'com.android.support:cardview-v7:25.0.1'
77-
compile 'com.android.support:recyclerview-v7:25.0.1'
78-
compile 'com.mikhaellopez:circularimageview:3.0.2'
79-
compile 'com.google.android.gms:play-services-appindexing:9.2.1'
80-
compile 'com.google.android.gms:play-services-location:9.2.1'
81-
compile 'com.jakewharton:butterknife:8.5.1'
82-
compile 'com.google.code.gson:gson:2.7'
83-
testCompile 'junit:junit:4.12'
84-
androidTestCompile 'com.android.support.test:runner:0.5'
85-
androidTestCompile 'com.android.support.test:rules:0.5'
86-
androidTestCompile 'org.mockito:mockito-core:1.+'
87-
androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
88-
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
89-
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
90-
compile 'com.android.support.constraint:constraint-layout:1.0.2'
63+
implementation fileTree(include: ['*.jar'], dir: 'libs')
64+
implementation 'com.android.support:appcompat-v7:27.1.1'
65+
implementation 'com.google.android.gms:play-services-maps:9.2.1'
66+
implementation 'com.android.support:support-v4:27.1.1'
67+
implementation 'com.android.support:design:27.1.1'
68+
implementation 'com.weiwangcn.betterspinner:library-material:1.1.0'
69+
implementation 'com.google.android.gms:play-services-auth:9.2.1'
70+
implementation 'com.android.support:cardview-v7:27.1.1'
71+
implementation 'com.android.support:recyclerview-v7:27.1.1'
72+
implementation 'com.mikhaellopez:circularimageview:3.0.2'
73+
implementation 'com.google.android.gms:play-services-appindexing:9.2.1'
74+
implementation 'com.google.android.gms:play-services-location:9.2.1'
75+
implementation 'com.jakewharton:butterknife:8.5.1'
76+
implementation 'com.google.code.gson:gson:2.7'
77+
78+
def power_mockito_version = "2.0.0-beta.5"
79+
testImplementation 'junit:junit:4.12'
80+
testImplementation 'org.json:json:20171018'
81+
testImplementation 'org.mockito:mockito-core:2.21.0'
82+
testImplementation "org.powermock:powermock-module-junit4:$power_mockito_version"
83+
testImplementation "org.powermock:powermock-module-junit4-rule:$power_mockito_version"
84+
testImplementation "org.powermock:powermock-api-mockito2:$power_mockito_version"
85+
testImplementation "org.powermock:powermock-classloading-xstream:$power_mockito_version"
86+
testImplementation "org.powermock:powermock-core:2.0.0-beta.5$power_mockito_version"
87+
88+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
9189
}
9290
apply plugin: 'com.google.gms.google-services'

ActivityExamples/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
google()
67
}
78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.2'
9+
classpath 'com.android.tools.build:gradle:3.3.0-alpha11'
910
classpath 'com.google.gms:google-services:3.0.0'
1011
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1112
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
@@ -19,6 +20,7 @@ buildscript {
1920
allprojects {
2021
repositories {
2122
jcenter()
23+
google()
2224
}
2325
}
2426

693 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Mar 04 08:33:51 IST 2017
1+
#Thu Sep 20 19:48:55 IST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-all.zip

ActivityExamples/gradlew

Lines changed: 42 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ActivityExamples/gradlew.bat

Lines changed: 4 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-3 Bytes
Binary file not shown.

BroadCast/.idea/encodings.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)