Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Room Park Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav Bogdashkin
Room Park Android
Commits
b29b4a20
Commit
b29b4a20
authored
May 15, 2020
by
Vladislav Bogdashkin
🎣
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/auto_building' into develop
parents
49378a4b
41d0c803
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
3 deletions
+51
-3
build.gradle
app/build.gradle
+51
-0
IBigantoUnityPlugin.java
...sual/roompark/player/unity_utils/IBigantoUnityPlugin.java
+0
-3
No files found.
app/build.gradle
View file @
b29b4a20
...
...
@@ -16,6 +16,16 @@ apply plugin: 'com.google.firebase.crashlytics'
//apply plugin: 'io.fabric'
// Create a variable called keystorePropertiesFile, and initialize it to your
// keystore.properties file, in the rootProject folder.
// Initialize a new Properties() object called keystoreProperties.
def
keystoreProperties
=
new
Properties
()
// Load your keystore.properties file into the keystoreProperties object.
android
{
compileSdkVersion
compileSdkVersion_RoomPark
defaultConfig
{
...
...
@@ -30,7 +40,23 @@ android {
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs
{
release
{
def
keystorePropertiesFile
=
rootProject
.
file
(
"../roomParkKeystore.properties"
)
if
(
keystorePropertiesFile
.
exists
()
){
keystoreProperties
.
load
(
new
FileInputStream
(
keystorePropertiesFile
))
keyAlias
keystoreProperties
[
'keyAlias'
]
keyPassword
keystoreProperties
[
'keyPassword'
]
storeFile
file
(
keystoreProperties
[
'storeFile'
])
storePassword
keystoreProperties
[
'storePassword'
]
}
// else throw new GradleException('Plesase, provide keystore properties file! ')
// You need to specify either an absolute path or include the
// keystore file in the same directory as the build.gradle file.
}
}
buildTypes
{
debug
{
...
...
@@ -38,11 +64,36 @@ android {
ext
.
alwaysUpdateBuildId
=
false
}
release
{
signingConfig
signingConfigs
.
release
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
debuggable
false
}
}
applicationVariants
.
all
{
variant
->
if
(
variant
.
name
.
contains
(
"release"
))
{
variant
.
outputs
.
each
{
output
->
output
.
outputFileName
=
new
File
(
"Expeditor_v"
)
}
}
}
task
renameBundle
(
type:
Copy
)
{
from
"$buildDir/outputs/bundle/release"
into
"../../"
String
name
=
findProperty
(
'newBundleName'
)
rename
'app-release.aab'
,
"${name}.aab"
}
task
publishRelease
(
type:
GradleBuild
)
{
tasks
=
[
'bundleRelease'
]
}
androidExtensions
{
experimental
=
true
}
...
...
app/src/main/java/com/biganto/visual/roompark/player/unity_utils/IBigantoUnityPlugin.java
View file @
b29b4a20
...
...
@@ -8,7 +8,4 @@ public interface IBigantoUnityPlugin{
public
void
sendUnityPauseRequest
(
String
request
);
public
void
sendUnityErrorRequest
(
String
request
);
public
void
sendUnityChangeOrientationRequest
(
String
request
);
// void onTourSceneLoaded();
// void onTourScenePrepared(TourPlayerCallback callback);
// void onTourLoaded(TourReadyCallback callback);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment