Skip to content

Commit

Permalink
Restored Android 4.0 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
PaitoAnderson committed Jan 3, 2015
1 parent 4623dce commit ad2736f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Skrumaz/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {

defaultConfig {
applicationId "com.skrumaz.app"
minSdkVersion 16
minSdkVersion 15
targetSdkVersion 21
versionCode 112
versionName "1.1.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public List<Artifact> FetchItems(Context context) {
iteration.setOid(IterationId);

// Get US/DE's
GetArtifacts(context);
GetAllArtifacts(context);

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

// Get US/DE's
GetArtifacts(context);
GetAllArtifacts(context);

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

public void GetArtifacts(Context context) {
public void GetAllArtifacts(Context context) {

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public CirclePageIndicator(Context context, AttributeSet attrs, int defStyle) {

Drawable background = a.getDrawable(R.styleable.CirclePageIndicator_android_background);
if (background != null) {
setBackground(background);
setBackgroundDrawable(background);
}

a.recycle();
Expand Down

0 comments on commit ad2736f

Please sign in to comment.