mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 10:23:24 +00:00
11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import { UnavailabilityError } from "expo-modules-core";
|
|
|
|
export default {
|
|
isDevelopmentProvisioningProfile: () => {
|
|
throw new UnavailabilityError(
|
|
"CheckIosCertificate",
|
|
"isDevelopmentProvisioningProfile",
|
|
);
|
|
},
|
|
};
|