12 lines
220 B
JavaScript
12 lines
220 B
JavaScript
import BasePlatform from './BasePlatform';
|
|
|
|
|
|
|
|
class AppPlatform extends BasePlatform {
|
|
constructor() {
|
|
super();
|
|
this.code = 'APP_ANDROID';
|
|
this.env = 'app';
|
|
}
|
|
}
|
|
export default AppPlatform; |