Skip to content

Commit ad2736f

Browse files
committed
Restored Android 4.0 support.
1 parent 4623dce commit ad2736f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Skrumaz/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId "com.skrumaz.app"
9-
minSdkVersion 16
9+
minSdkVersion 15
1010
targetSdkVersion 21
1111
versionCode 112
1212
versionName "1.1.2"

Skrumaz/src/main/java/com/skrumaz/app/data/WebService/GetArtifacts.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public List<Artifact> FetchItems(Context context) {
5353
iteration.setOid(IterationId);
5454

5555
// Get US/DE's
56-
GetArtifacts(context);
56+
GetAllArtifacts(context);
5757

5858
// Store items in Database
5959
Artifacts db = new Artifacts(context);
@@ -97,7 +97,7 @@ public List<Artifact> FetchItems(Context context) {
9797
Log.i("GetArtifacts", "Iteration: " + iteration.getName());
9898

9999
// Get US/DE's
100-
GetArtifacts(context);
100+
GetAllArtifacts(context);
101101

102102
// Store items in Database
103103
Artifacts db = new Artifacts(context);
@@ -122,7 +122,7 @@ public List<Artifact> FetchItems(Context context) {
122122
return artifacts;
123123
}
124124

125-
public void GetArtifacts(Context context) {
125+
public void GetAllArtifacts(Context context) {
126126

127127
((MainActivity)context).SetProgress("Getting Artifacts...");
128128

Skrumaz/src/main/java/com/skrumaz/app/ui/viewpageindicator/CirclePageIndicator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public CirclePageIndicator(Context context, AttributeSet attrs, int defStyle) {
107107

108108
Drawable background = a.getDrawable(R.styleable.CirclePageIndicator_android_background);
109109
if (background != null) {
110-
setBackground(background);
110+
setBackgroundDrawable(background);
111111
}
112112

113113
a.recycle();

0 commit comments

Comments
 (0)