Skip to content

Commit

Permalink
version update; was skipped last time.
Browse files Browse the repository at this point in the history
  • Loading branch information
krtkush committed Nov 23, 2017
1 parent 757e773 commit 0ba035c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@

public class MainActivity extends AppCompatActivity implements LinearTimer.TimerListener {

private LinearTimerView linearTimerView;
private LinearTimer linearTimer;
private TextView time;
private long duration = 10 * 1000;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

linearTimerView = (LinearTimerView) findViewById(R.id.linearTimer);
time = (TextView) findViewById(R.id.time);
LinearTimerView linearTimerView = findViewById(R.id.linearTimer);
time = findViewById(R.id.time);

long duration = 10 * 1000;

// Assign attribute values to the view programmatically
// This will override the attributes set via the XML.
Expand Down
2 changes: 1 addition & 1 deletion lineartimer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "2.1.0"
versionName "2.1.1"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit 0ba035c

Please sign in to comment.