You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Updating font to IBM Plex Sans ([bd9e361](https://github.com/ZebraDevs/zds-android/commit/bd9e36102f864d9bdda95c58ae572df7c9ac4716))
10
+
* Updating font to IBM Plex Sans ([5c3cfc3](https://github.com/ZebraDevs/zds-android/commit/5c3cfc3846794b457a84325c5a528cb9e7e6e1b7))
11
+
12
+
13
+
### 🪲 Bug Fixes
14
+
15
+
* Updated colours to match Zeta ([#5](https://github.com/ZebraDevs/zds-android/issues/5)) ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
* Update gradle, android compileSdk 34 and other dependencies ([#6](https://github.com/ZebraDevs/zds-android/issues/6)) ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac))
30
+
31
+
32
+
### 🧹 Miscellaneous Chores
33
+
34
+
* Add version to example app ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
35
+
* Organise / clean code using Android studio built in tools ([445100e](https://github.com/ZebraDevs/zds-android/commit/445100e9ad9f4a6a63f16f14a5f053bb73bbf1ac))
36
+
* Remove unnecessary icons from example app ([4e05e08](https://github.com/ZebraDevs/zds-android/commit/4e05e086135cf9cd557903bcf68265ce1dc75893))
Copy file name to clipboardExpand all lines: README.md
+23-11Lines changed: 23 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,8 @@ Once logged in with SSO, select your username in the top right corner, and selec
17
17
These credentials will need to be passed into Gradle, but they should not be committed to source control. It is recommended for individuals to save their username and password in their global `gradle.properties` file in the `<USER_HOME>/.gradle` directory (This file may need to be created). The following format is only an example, and any names can be given.
This step is needed to ensure that gradle can sync and pull data from the maven repository. In Android studio, click the 'Make Module' button in the toolbar (hammer icon).
80
+
81
+
### 5. Add dependency to app build file
78
82
79
83
This file should be located within the app directory of your project (not the root level); below are examples for both `build.gradle` and `build.gradle.kts`
80
84
@@ -85,7 +89,7 @@ This file should be located within the app directory of your project (not the ro
85
89
```
86
90
dependencies {
87
91
...
88
-
implementation 'com.zebra:zds:1.0.0'
92
+
implementation 'com.zebra:zds:1.1.0'
89
93
}
90
94
```
91
95
@@ -96,17 +100,25 @@ dependencies {
96
100
97
101
<!-- x-release-please-start-version -->
98
102
103
+
dependencies {
104
+
...
105
+
implementation("com.zebra:zds:1.1.0")
106
+
}
107
+
108
+
<!-- x-release-please-end -->
109
+
110
+
Once you have done this, and performed a sync and build, the IDE _should_ recommend this line be refactored into the new style below:
111
+
99
112
```
100
113
dependencies {
101
114
...
102
115
implementation(libs.zds)
103
116
}
104
117
```
105
118
106
-
<!-- x-release-please-end -->
107
119
</details>
108
120
109
-
### 5. Add theme to manifest
121
+
### 6. Add theme to manifest
110
122
111
123
For the components to work and receive the correct theme values, we must add the theme in `AndroidManifest.xml`. Be sure to remove other themes which could override this and prevent the components from working.
112
124
@@ -118,7 +130,7 @@ For the components to work and receive the correct theme values, we must add the
0 commit comments