DeviceMeta実装WIP

This commit is contained in:
ろむねこ 2023-12-10 18:10:30 +09:00
parent 6e3434b7f1
commit c2eec8064b
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168
3 changed files with 26 additions and 3 deletions

View File

@ -1,4 +1,21 @@
package com.example.lacerta.data.impl;
public class DeviceMetaImpl {
import com.example.lacerta.data.repository.DeviceMeta;
import javax.inject.Inject;
public class DeviceMetaImpl implements DeviceMeta{
@Inject
public DeviceMetaImpl() {
}
public String getDeviceId() {
return "device_id"; // DEBUG
}
public String getDeviceApiLevel() {
return "device_api_level"; // DEBUG
}
}

View File

@ -0,0 +1,4 @@
package com.example.lacerta.data.module;
public class DeviceMetaModule {
}

View File

@ -1,4 +1,6 @@
package com.example.lacerta.data.repository;
public class DeviceMeta {
}
public interface DeviceMeta {
String getDeviceId();
String getDeviceApiLevel();
}