Skip to content

Commit 1523d0b

Browse files
Merge pull request #16 from SebiAi/docs-fix-phone2aplus-documentation
Fix the documentation for the Phone (2a) Plus model
2 parents b92bf47 + 3fcad8b commit 1523d0b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,14 @@ Help to distinguish between smartphone model.
5353
| String | ```DEVICE_20111``` |
5454
| String | ```DEVICE_22111``` |
5555
| String | ```DEVICE_23111``` |
56+
| String | ```DEVICE_23113``` |
5657

5758
| Methods | |
5859
| ------------ | ------------ |
59-
| boolean | ```is20111()``` <br> Whether model is Phone (1) |
60-
| boolean | ```is22111()``` <br> Whether model is Phone (2) |
61-
| boolean | ```is23111()``` <br> Whether model are Phone (2a) and Phone (2a) Plus |
60+
| boolean | ```is20111()``` <br> Whether model is Phone (1) |
61+
| boolean | ```is22111()``` <br> Whether model is Phone (2) |
62+
| boolean | ```is23111()``` <br> Whether model is Phone (2a) |
63+
| boolean | ```is23113()``` <br> Whether model is Phone (2a) Plus |
6264
## Glyph
6365
How the Glyph Interface is indexed
6466
### Nothing Phone (1)
@@ -191,6 +193,7 @@ public class MainActivity extends AppCompatActivity {
191193
if (Common.is20111()) mGM.register(Common.DEVICE_20111);
192194
if (Common.is22111()) mGM.register(Common.DEVICE_22111);
193195
if (Common.is23111()) mGM.register(Common.DEVICE_23111);
196+
if (Common.is23113()) mGM.register(Common.DEVICE_23113);
194197
try {
195198
mGM.openSession();
196199
} catch(GlyphException e) {

0 commit comments

Comments
 (0)