Commit b5f86776 authored by Vladislav Bogdashkin's avatar Vladislav Bogdashkin 🎣

init

parent 49378a4b
...@@ -30,7 +30,16 @@ android { ...@@ -30,7 +30,16 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
signingConfigs {
release {
// You need to specify either an absolute path or include the
// keystore file in the same directory as the build.gradle file.
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
buildTypes { buildTypes {
debug { debug {
......
...@@ -8,7 +8,4 @@ public interface IBigantoUnityPlugin{ ...@@ -8,7 +8,4 @@ public interface IBigantoUnityPlugin{
public void sendUnityPauseRequest(String request); public void sendUnityPauseRequest(String request);
public void sendUnityErrorRequest(String request); public void sendUnityErrorRequest(String request);
public void sendUnityChangeOrientationRequest(String request); public void sendUnityChangeOrientationRequest(String request);
// void onTourSceneLoaded();
// void onTourScenePrepared(TourPlayerCallback callback);
// void onTourLoaded(TourReadyCallback callback);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment