File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,14 @@ Help to distinguish between smartphone model.
53
53
| String | ``` DEVICE_20111 ``` |
54
54
| String | ``` DEVICE_22111 ``` |
55
55
| String | ``` DEVICE_23111 ``` |
56
+ | String | ``` DEVICE_23113 ``` |
56
57
57
58
| Methods | |
58
59
| ------------ | ------------ |
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 |
62
64
## Glyph
63
65
How the Glyph Interface is indexed
64
66
### Nothing Phone (1)
@@ -191,6 +193,7 @@ public class MainActivity extends AppCompatActivity {
191
193
if (Common . is20111()) mGM. register(Common . DEVICE_20111 );
192
194
if (Common . is22111()) mGM. register(Common . DEVICE_22111 );
193
195
if (Common . is23111()) mGM. register(Common . DEVICE_23111 );
196
+ if (Common . is23113()) mGM. register(Common . DEVICE_23113 );
194
197
try {
195
198
mGM. openSession();
196
199
} catch (GlyphException e) {
You can’t perform that action at this time.
0 commit comments