Skip to content

Commit ab191fb

Browse files
Updated readme, added open source illustration credits to authors in settings.
1 parent 3a2765a commit ab191fb

File tree

3 files changed

+71
-5
lines changed

3 files changed

+71
-5
lines changed

README.md

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
1-
# DeveloperBreach-Release
2-
Release-1 version-1.0.0 for google play.
1+
# DevelopersBreach for Android
32

4-
Working on next release v1.1.0
3+
## version 1.1.0 ready
4+
5+
### :scroll: Changes
6+
7+
New update almost after an year.
8+
9+
* Light/dark theme support with only blue variants.
10+
* Removed firebase UI authentication.
11+
* App now shows all authors and contributors.
12+
* Android best practices implemented, built with jetpack components.
13+
* Improved navigation layer with NavigationComponent.
14+
* Implemented global repository pattern which connects with rest of app repositories.
15+
* Animations all over the places. Will minimize in next release.
16+
* Excessive use of exceptions, WebView, companion objects, extensive functions.
17+
* More to mention, will update readme later.
18+
19+
## version 1.0.0 published
20+
21+
App looks completely boring, please don't install xD until second release.
22+
23+
## License
24+
25+
```
26+
Copyright 2021 Rajasekhar K E
27+
28+
Licensed under the Apache License, Version 2.0 (the "License");
29+
you may not use this file except in compliance with the License.
30+
You may obtain a copy of the License at
31+
32+
https://www.apache.org/licenses/LICENSE-2.0
33+
34+
Unless required by applicable law or agreed to in writing, software
35+
distributed under the License is distributed on an "AS IS" BASIS,
36+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
37+
See the License for the specific language governing permissions and
38+
limitations under the License.
39+
```

app/src/main/res/layout/fragment_settings.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,34 @@
132132

133133
</androidx.constraintlayout.widget.ConstraintLayout>
134134

135+
<TextView
136+
android:layout_width="@dimen/match_constraint"
137+
android:layout_height="wrap_content"
138+
android:layout_marginBottom="@dimen/layout_margin_8dp"
139+
android:alpha="0.8"
140+
android:gravity="center"
141+
android:paddingHorizontal="24dp"
142+
android:text="@string/un_draw_description"
143+
android:textAppearance="?attr/textAppearanceSubtitle1"
144+
android:textColor="#6C63FF"
145+
android:textStyle="italic"
146+
app:layout_constraintBottom_toTopOf="@id/un_draw_textview_tag"
147+
app:layout_constraintEnd_toEndOf="parent"
148+
app:layout_constraintStart_toStartOf="parent" />
149+
150+
<TextView
151+
android:id="@+id/un_draw_textview_tag"
152+
android:layout_width="wrap_content"
153+
android:layout_height="wrap_content"
154+
android:layout_marginBottom="@dimen/layout_margin_16dp"
155+
android:text="@string/un_draw_tag"
156+
android:textAppearance="?attr/textAppearanceHeadline5"
157+
android:textColor="#6C63FF"
158+
android:textStyle="bold"
159+
app:layout_constraintBottom_toBottomOf="parent"
160+
app:layout_constraintEnd_toEndOf="parent"
161+
app:layout_constraintStart_toStartOf="parent" />
162+
135163
</androidx.constraintlayout.widget.ConstraintLayout>
136164

137165
</androidx.coordinatorlayout.widget.CoordinatorLayout>

app/src/main/res/values/strings.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<!-- WebView URL's in WebViewFragment -->
3030
<string name="url_site_contact">https://developersbreach.com/contact/</string>
31-
<string name="url_site_developer">https://github.com/RajashekarRaju</string>
31+
<string name="url_site_developer">https://github.com/RajashekarRaju/developers-breach-android</string>
3232

3333
<!-- SettingsFragment Preferences -->
3434
<!-- Category Title -->
@@ -126,4 +126,7 @@
126126
initial and target values.
127127
</string>
128128

129-
</resources>
129+
<string name="un_draw_tag">UnDraw</string>
130+
<string name="un_draw_description">Thanks to UnDraw for giving open source illustrations.</string>
131+
132+
</resources>

0 commit comments

Comments
 (0)