We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69a3dc4 commit f7c45dcCopy full SHA for f7c45dc
1 file changed
README.md
@@ -34,6 +34,18 @@ Then add the uses-library element to your application
34
</application>
35
```
36
37
+Finally, add EMDK dependency to your application build.graddle file:
38
+```json
39
+dependencies {
40
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
41
+ implementation 'com.android.support:appcompat-v7:28.0.0'
42
+ testImplementation 'junit:junit:4.13'
43
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
44
+ androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
45
+ compileOnly 'com.symbol:emdk:+'
46
+}
47
+```
48
+
49
Snippet code to use to retrieve the Serial Number of the device:
50
51
```java
0 commit comments