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
ea4ddede
Commit
ea4ddede
authored
May 15, 2020
by
Vladislav Bogdashkin
🎣
Browse files
Options
Browse Files
Download
Plain Diff
M0.9.2erge branch 'release/0.9.2'
parents
5ea5fc1f
1b9e78dc
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
69 additions
and
6 deletions
+69
-6
build.gradle
app/build.gradle
+51
-0
IBigantoUnityPlugin.java
...sual/roompark/player/unity_utils/IBigantoUnityPlugin.java
+0
-3
ScreenController.kt
...ual/roompark/presentation/screen/auth/ScreenController.kt
+10
-0
authentication_screen.xml
app/src/main/res/layout/authentication_screen.xml
+1
-0
dependencies.gradle
dependencies.gradle
+2
-2
readme.md
readme.md
+5
-1
No files found.
app/build.gradle
View file @
ea4ddede
...
@@ -16,6 +16,16 @@ apply plugin: 'com.google.firebase.crashlytics'
...
@@ -16,6 +16,16 @@ apply plugin: 'com.google.firebase.crashlytics'
//apply plugin: 'io.fabric'
//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
{
android
{
compileSdkVersion
compileSdkVersion_RoomPark
compileSdkVersion
compileSdkVersion_RoomPark
defaultConfig
{
defaultConfig
{
...
@@ -30,7 +40,23 @@ android {
...
@@ -30,7 +40,23 @@ android {
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
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
{
buildTypes
{
debug
{
debug
{
...
@@ -38,11 +64,36 @@ android {
...
@@ -38,11 +64,36 @@ android {
ext
.
alwaysUpdateBuildId
=
false
ext
.
alwaysUpdateBuildId
=
false
}
}
release
{
release
{
signingConfig
signingConfigs
.
release
minifyEnabled
false
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
debuggable
false
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
{
androidExtensions
{
experimental
=
true
experimental
=
true
}
}
...
...
app/src/main/java/com/biganto/visual/roompark/player/unity_utils/IBigantoUnityPlugin.java
View file @
ea4ddede
...
@@ -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);
}
}
app/src/main/java/com/biganto/visual/roompark/presentation/screen/auth/ScreenController.kt
View file @
ea4ddede
...
@@ -2,11 +2,13 @@ package com.biganto.visual.roompark.presentation.screen.auth
...
@@ -2,11 +2,13 @@ package com.biganto.visual.roompark.presentation.screen.auth
import
android.view.View
import
android.view.View
import
butterknife.BindView
import
butterknife.BindView
import
butterknife.OnClick
import
com.biganto.visual.roompark.R
import
com.biganto.visual.roompark.R
import
com.biganto.visual.roompark.base.RoomParkApplication
import
com.biganto.visual.roompark.base.RoomParkApplication
import
com.biganto.visual.roompark.base.RoomParkMainActivity
import
com.biganto.visual.roompark.base.RoomParkMainActivity
import
com.biganto.visual.roompark.conductor.BigantoBaseController
import
com.biganto.visual.roompark.conductor.BigantoBaseController
import
com.biganto.visual.roompark.presentation.screen.home.home_routing.HomeBottomNavigationController
import
com.biganto.visual.roompark.presentation.screen.home.home_routing.HomeBottomNavigationController
import
com.biganto.visual.roompark.util.extensions.startUrl
import
com.bluelinelabs.conductor.RouterTransaction
import
com.bluelinelabs.conductor.RouterTransaction
import
com.google.android.material.button.MaterialButton
import
com.google.android.material.button.MaterialButton
import
com.google.android.material.textfield.TextInputLayout
import
com.google.android.material.textfield.TextInputLayout
...
@@ -22,6 +24,8 @@ import javax.inject.Inject
...
@@ -22,6 +24,8 @@ import javax.inject.Inject
* Created by Vladislav Bogdashkin on 30.09.2019.
* Created by Vladislav Bogdashkin on 30.09.2019.
*/
*/
private
const
val
RESTORE_PASS_URL
=
"https://room-park.ru/users/remind/"
class
AuthScreenController
:
class
AuthScreenController
:
BigantoBaseController
<
AuthScreenViewState
BigantoBaseController
<
AuthScreenViewState
,
AuthScreen
,
AuthScreen
...
@@ -37,6 +41,12 @@ class AuthScreenController :
...
@@ -37,6 +41,12 @@ class AuthScreenController :
@BindView
(
R
.
id
.
login_text_input
)
lateinit
var
loginInput
:
TextInputLayout
@BindView
(
R
.
id
.
login_text_input
)
lateinit
var
loginInput
:
TextInputLayout
@BindView
(
R
.
id
.
password_text_input
)
lateinit
var
pwdInput
:
TextInputLayout
@BindView
(
R
.
id
.
password_text_input
)
lateinit
var
pwdInput
:
TextInputLayout
@BindView
(
R
.
id
.
sign_in_button
)
lateinit
var
signInButton
:
MaterialButton
@BindView
(
R
.
id
.
sign_in_button
)
lateinit
var
signInButton
:
MaterialButton
@BindView
(
R
.
id
.
restore_pass_button
)
lateinit
var
restoreButton
:
MaterialButton
@OnClick
(
R
.
id
.
restore_pass_button
)
fun
onRestorePass
(){
activity
?.
startUrl
(
RESTORE_PASS_URL
)
}
override
fun
tryAuth
():
Observable
<
AuthInputModel
>
=
override
fun
tryAuth
():
Observable
<
AuthInputModel
>
=
signInButton
.
clicks
()
signInButton
.
clicks
()
...
...
app/src/main/res/layout/authentication_screen.xml
View file @
ea4ddede
...
@@ -99,6 +99,7 @@
...
@@ -99,6 +99,7 @@
<com.google.android.material.button.MaterialButton
<com.google.android.material.button.MaterialButton
android:id=
"@+id/restore_pass_button"
style=
"@style/AuthButton.Restore"
style=
"@style/AuthButton.Restore"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"40dp"
android:layout_height=
"40dp"
...
...
dependencies.gradle
View file @
ea4ddede
...
@@ -5,8 +5,8 @@ ext {
...
@@ -5,8 +5,8 @@ ext {
minSdkVersion_RoomPark
=
23
minSdkVersion_RoomPark
=
23
compileSdkVersion_RoomPark
=
28
compileSdkVersion_RoomPark
=
28
VERSION_CODE
=
7
VERSION_CODE
=
8
VERSION_NAME
=
"0.9.
1
"
VERSION_NAME
=
"0.9.
2
"
// supportLibraryVersion = '1.1.0-alpha05'
// supportLibraryVersion = '1.1.0-alpha05'
constrainLayoutVersion
=
'1.1.3'
constrainLayoutVersion
=
'1.1.3'
...
...
readme.md
View file @
ea4ddede
Room Park official Android application
Room Park official Android application
-
- v.0.9.1 - -
-
- v.0.9.2 - -
# 0.9.2 --> 0.9.1
*
universal untiy-mobile building support
*
fix resotre url button
Pre-release version
Pre-release version
...
...
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