Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Talking Reminder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
RAUSHAN RAJ
Talking Reminder
Commits
a0d81e05
Commit
a0d81e05
authored
Nov 05, 2019
by
DEEPAK VERMA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy Right Comment Removed
menu receieve reminder xml added receive reminder save
parent
0d89253f
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
118 additions
and
260 deletions
+118
-260
app/build.gradle
app/build.gradle
+1
-15
app/src/androidTest/java/com/blanyal/remindme/ApplicationTest.java
...ndroidTest/java/com/blanyal/remindme/ApplicationTest.java
+0
-28
app/src/main/java/com/blanyal/remindme/DateTimeSorter.java
app/src/main/java/com/blanyal/remindme/DateTimeSorter.java
+0
-16
app/src/main/java/com/blanyal/remindme/ReminderReceiveActivity.java
...in/java/com/blanyal/remindme/ReminderReceiveActivity.java
+106
-1
app/src/main/res/drawable/toolbar_dropshadow.xml
app/src/main/res/drawable/toolbar_dropshadow.xml
+0
-14
app/src/main/res/layout/activity_add_reminder.xml
app/src/main/res/layout/activity_add_reminder.xml
+1
-16
app/src/main/res/layout/activity_main.xml
app/src/main/res/layout/activity_main.xml
+0
-15
app/src/main/res/layout/licenses.xml
app/src/main/res/layout/licenses.xml
+0
-15
app/src/main/res/layout/recycle_items.xml
app/src/main/res/layout/recycle_items.xml
+0
-15
app/src/main/res/menu/main_menu.xml
app/src/main/res/menu/main_menu.xml
+0
-15
app/src/main/res/menu/menu_add_reminder.xml
app/src/main/res/menu/menu_add_reminder.xml
+0
-14
app/src/main/res/menu/menu_receive_reminder.xml
app/src/main/res/menu/menu_receive_reminder.xml
+8
-0
app/src/main/res/values-v19/styles.xml
app/src/main/res/values-v19/styles.xml
+0
-15
app/src/main/res/values-v21/styles.xml
app/src/main/res/values-v21/styles.xml
+0
-15
app/src/main/res/values/colors.xml
app/src/main/res/values/colors.xml
+0
-18
app/src/main/res/values/dimens.xml
app/src/main/res/values/dimens.xml
+1
-18
app/src/main/res/values/styles.xml
app/src/main/res/values/styles.xml
+0
-15
build.gradle
build.gradle
+1
-15
No files found.
app/build.gradle
View file @
a0d81e05
/*
* Copyright 2015 Blanyal D'Souza.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply
plugin:
'com.android.application'
apply
plugin:
'com.android.application'
...
...
app/src/androidTest/java/com/blanyal/remindme/ApplicationTest.java
deleted
100644 → 0
View file @
0d89253f
/*
* Copyright 2015 Blanyal D'Souza.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com.blanyal.remindme
;
import
android.app.Application
;
import
android.test.ApplicationTestCase
;
public
class
ApplicationTest
extends
ApplicationTestCase
<
Application
>
{
public
ApplicationTest
()
{
super
(
Application
.
class
);
}
}
\ No newline at end of file
app/src/main/java/com/blanyal/remindme/DateTimeSorter.java
View file @
a0d81e05
/*
* Copyright 2015 Blanyal D'Souza.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
com.blanyal.remindme
;
package
com.blanyal.remindme
;
...
...
app/src/main/java/com/blanyal/remindme/ReminderReceiveActivity.java
View file @
a0d81e05
...
@@ -2,11 +2,14 @@ package com.blanyal.remindme;
...
@@ -2,11 +2,14 @@ package com.blanyal.remindme;
import
androidx.appcompat.app.AppCompatActivity
;
import
androidx.appcompat.app.AppCompatActivity
;
import
androidx.appcompat.widget.Toolbar
;
import
androidx.appcompat.widget.Toolbar
;
import
androidx.core.content.FileProvider
;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.net.Uri
;
import
android.net.Uri
;
import
android.os.Bundle
;
import
android.os.Bundle
;
import
android.view.Menu
;
import
android.view.MenuItem
;
import
android.widget.EditText
;
import
android.widget.EditText
;
import
android.widget.TextView
;
import
android.widget.TextView
;
import
android.widget.Toast
;
import
android.widget.Toast
;
...
@@ -16,17 +19,43 @@ import org.json.JSONObject;
...
@@ -16,17 +19,43 @@ import org.json.JSONObject;
import
java.io.File
;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.FileInputStream
;
import
java.io.InputStream
;
import
java.io.InputStream
;
import
java.util.Calendar
;
public
class
ReminderReceiveActivity
extends
AppCompatActivity
{
public
class
ReminderReceiveActivity
extends
AppCompatActivity
{
private
Toolbar
mToolbar
;
private
Toolbar
mToolbar
;
private
EditText
mTitleText
;
private
EditText
mTitleText
;
private
TextView
mDateText
,
mTimeText
,
mRepeatText
,
mRepeatNoText
,
mRepeatTypeText
;
private
TextView
mDateText
,
mTimeText
,
mRepeatText
,
mRepeatNoText
,
mRepeatTypeText
;
private
String
mRepeat
;
private
String
mRepeatType
;
private
String
mRepeatNo
;
private
Calendar
mCalendar
;
private
int
mYear
,
mMonth
,
mHour
,
mMinute
,
mDay
;
private
long
mRepeatTime
;
private
String
mActive
;
private
static
final
long
milMinute
=
60000L
;
private
static
final
long
milHour
=
3600000L
;
private
static
final
long
milDay
=
86400000L
;
private
static
final
long
milWeek
=
604800000L
;
private
static
final
long
milMonth
=
2592000000L
;
@Override
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
activity_add_reminder
);
setContentView
(
R
.
layout
.
activity_add_reminder
);
Context
context
=
this
;
Context
context
=
this
;
mCalendar
=
Calendar
.
getInstance
();
mHour
=
mCalendar
.
get
(
Calendar
.
HOUR_OF_DAY
);
mMinute
=
mCalendar
.
get
(
Calendar
.
MINUTE
);
mYear
=
mCalendar
.
get
(
Calendar
.
YEAR
);
mMonth
=
mCalendar
.
get
(
Calendar
.
MONTH
)
+
1
;
mDay
=
mCalendar
.
get
(
Calendar
.
DATE
);
//by default
mActive
=
"true"
;
// Setup Toolbar
// Setup Toolbar
mToolbar
=
(
Toolbar
)
findViewById
(
R
.
id
.
toolbar
);
mToolbar
=
(
Toolbar
)
findViewById
(
R
.
id
.
toolbar
);
setSupportActionBar
(
mToolbar
);
setSupportActionBar
(
mToolbar
);
...
@@ -60,6 +89,10 @@ public class ReminderReceiveActivity extends AppCompatActivity {
...
@@ -60,6 +89,10 @@ public class ReminderReceiveActivity extends AppCompatActivity {
mRepeatNoText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_no
);
mRepeatNoText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_no
);
mRepeatTypeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_type
);
mRepeatTypeText
=
(
TextView
)
findViewById
(
R
.
id
.
set_repeat_type
);
mRepeat
=
obj
.
getString
(
"mRepeat"
);
mRepeatType
=
obj
.
getString
(
"mRepeatType"
);
mRepeatNo
=
obj
.
getString
(
"mRepeatNo"
);
mTitleText
.
setText
(
obj
.
getString
(
"mTitle"
));
mTitleText
.
setText
(
obj
.
getString
(
"mTitle"
));
mDateText
.
setText
(
obj
.
getString
(
"mDate"
));
mDateText
.
setText
(
obj
.
getString
(
"mDate"
));
mTimeText
.
setText
(
obj
.
getString
(
"mTime"
));
mTimeText
.
setText
(
obj
.
getString
(
"mTime"
));
...
@@ -68,7 +101,6 @@ public class ReminderReceiveActivity extends AppCompatActivity {
...
@@ -68,7 +101,6 @@ public class ReminderReceiveActivity extends AppCompatActivity {
mRepeatTypeText
.
setText
(
obj
.
getString
(
"mRepeatType"
));
mRepeatTypeText
.
setText
(
obj
.
getString
(
"mRepeatType"
));
}
}
catch
(
Throwable
t
){
catch
(
Throwable
t
){
t
.
printStackTrace
();
t
.
printStackTrace
();
...
@@ -81,4 +113,77 @@ public class ReminderReceiveActivity extends AppCompatActivity {
...
@@ -81,4 +113,77 @@ public class ReminderReceiveActivity extends AppCompatActivity {
startActivity(senderIntent);*/
startActivity(senderIntent);*/
}
}
}
}
public
void
saveSendReminder
(){
ReminderDatabase
rb
=
new
ReminderDatabase
(
this
);
// Creating Reminder
int
ID
=
rb
.
addReminder
(
new
Reminder
(
mTitleText
.
getText
().
toString
(),
mDateText
.
getText
().
toString
(),
mTimeText
.
getText
().
toString
(),
mRepeat
,
mRepeatNoText
.
getText
().
toString
(),
mRepeatTypeText
.
getText
().
toString
(),
mActive
));
// Set up calender for creating the notification
mCalendar
.
set
(
Calendar
.
MONTH
,
--
mMonth
);
mCalendar
.
set
(
Calendar
.
YEAR
,
mYear
);
mCalendar
.
set
(
Calendar
.
DAY_OF_MONTH
,
mDay
);
mCalendar
.
set
(
Calendar
.
HOUR_OF_DAY
,
mHour
);
mCalendar
.
set
(
Calendar
.
MINUTE
,
mMinute
);
mCalendar
.
set
(
Calendar
.
SECOND
,
0
);
// Check repeat type
if
(
mRepeatType
.
equals
(
"Minute"
))
{
mRepeatTime
=
Integer
.
parseInt
(
mRepeatNo
)
*
milMinute
;
}
else
if
(
mRepeatType
.
equals
(
"Hour"
))
{
mRepeatTime
=
Integer
.
parseInt
(
mRepeatNo
)
*
milHour
;
}
else
if
(
mRepeatType
.
equals
(
"Day"
))
{
mRepeatTime
=
Integer
.
parseInt
(
mRepeatNo
)
*
milDay
;
}
else
if
(
mRepeatType
.
equals
(
"Week"
))
{
mRepeatTime
=
Integer
.
parseInt
(
mRepeatNo
)
*
milWeek
;
}
else
if
(
mRepeatType
.
equals
(
"Month"
))
{
mRepeatTime
=
Integer
.
parseInt
(
mRepeatNo
)
*
milMonth
;
}
// Create a new notification
if
(
mActive
.
equals
(
"true"
))
{
if
(
mRepeat
.
equals
(
"true"
))
{
new
AlarmReceiver
().
setRepeatAlarm
(
getApplicationContext
(),
mCalendar
,
ID
,
mRepeatTime
);
}
else
if
(
mRepeat
.
equals
(
"false"
))
{
new
AlarmReceiver
().
setAlarm
(
getApplicationContext
(),
mCalendar
,
ID
);
}
}
// Create toast to confirm new reminder
Toast
.
makeText
(
getApplicationContext
(),
"Saved"
,
Toast
.
LENGTH_SHORT
).
show
();
onBackPressed
();
}
// Creating the menu
@Override
public
boolean
onCreateOptionsMenu
(
Menu
menu
)
{
getMenuInflater
().
inflate
(
R
.
menu
.
menu_receive_reminder
,
menu
);
return
true
;
}
@Override
public
boolean
onOptionsItemSelected
(
MenuItem
item
)
{
switch
(
item
.
getItemId
())
{
// On clicking the back arrow
// Discard any changes
case
android
.
R
.
id
.
home
:
onBackPressed
();
return
true
;
// On clicking save reminder button
// Update reminder
case
R
.
id
.
save_reminder
:
saveSendReminder
();
default
:
return
super
.
onOptionsItemSelected
(
item
);
}
}
}
}
app/src/main/res/drawable/toolbar_dropshadow.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
<shape
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:shape=
"rectangle"
>
android:shape=
"rectangle"
>
...
...
app/src/main/res/layout/activity_add_reminder.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:android=
"http://schemas.android.com/apk/res/android"
...
@@ -29,7 +14,7 @@
...
@@ -29,7 +14,7 @@
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:contentInsetLeft=
"0dp"
app:contentInsetLeft=
"0dp"
app:contentInsetStart=
"16dp"
app:contentInsetStart=
"16dp"
app:theme=
"@style/ThemeOverlay.AppCompat.Da
rk
.ActionBar"
app:theme=
"@style/ThemeOverlay.AppCompat.Da
yNight
.ActionBar"
android:background=
"?attr/colorPrimary"
/>
android:background=
"?attr/colorPrimary"
/>
<LinearLayout
<LinearLayout
...
...
app/src/main/res/layout/activity_main.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:android=
"http://schemas.android.com/apk/res/android"
...
...
app/src/main/res/layout/licenses.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:android=
"http://schemas.android.com/apk/res/android"
...
...
app/src/main/res/layout/recycle_items.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<RelativeLayout
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:android=
"http://schemas.android.com/apk/res/android"
...
...
app/src/main/res/menu/main_menu.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
...
...
app/src/main/res/menu/menu_add_reminder.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
>
xmlns:app=
"http://schemas.android.com/apk/res-auto"
>
...
...
app/src/main/res/menu/menu_receive_reminder.xml
0 → 100644
View file @
a0d81e05
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
>
<item
android:id=
"@+id/save_reminder"
android:icon=
"@drawable/ic_check_white_24dp"
android:title=
"@string/action_save_reminder"
app:showAsAction=
"ifRoom"
/>
</menu>
\ No newline at end of file
app/src/main/res/values-v19/styles.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<resources>
...
...
app/src/main/res/values-v21/styles.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<resources>
...
...
app/src/main/res/values/colors.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<resources>
<color
name=
"toolbar_title"
>
#ffffff
</color>
<color
name=
"primary"
>
#37474f
</color>
<color
name=
"primary"
>
#37474f
</color>
<color
name=
"primary_dark"
>
#263238
</color>
<color
name=
"primary_dark"
>
#263238
</color>
<color
name=
"accent"
>
#78909c
</color>
<color
name=
"accent"
>
#78909c
</color>
<color
name=
"control_normal"
>
#888888
</color>
<color
name=
"fab_pressed"
>
#546e7a
</color>
</resources>
</resources>
\ No newline at end of file
app/src/main/res/values/dimens.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
<resources></resources>
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<dimen
name=
"activity_horizontal_margin"
>
16dp
</dimen>
<dimen
name=
"activity_vertical_margin"
>
16dp
</dimen>
</resources>
app/src/main/res/values/styles.xml
View file @
a0d81e05
<!--
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<resources>
<resources>
<!-- Base application theme. -->
<!-- Base application theme. -->
...
...
build.gradle
View file @
a0d81e05
/*
* Copyright 2015 Blanyal D'Souza.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
buildscript
{
buildscript
{
repositories
{
repositories
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment