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
811a6796
Commit
811a6796
authored
Mar 17, 2020
by
Vladislav Bogdashkin
🎣
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/migrate_to_as_3.6.1' into develop
parents
36489dca
8302055c
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
27 additions
and
17 deletions
+27
-17
.name
.idea/.name
+0
-1
Project.xml
.idea/codeStyles/Project.xml
+0
-3
gradle.xml
.idea/gradle.xml
+1
-1
misc.xml
.idea/misc.xml
+16
-1
vcs.xml
.idea/vcs.xml
+1
-1
build.gradle
app/build.gradle
+1
-1
settings_screen.xml
app/src/main/res/layout/settings_screen.xml
+4
-6
build.gradle
build.gradle
+2
-2
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+2
-1
No files found.
.idea/.name
deleted
100644 → 0
View file @
36489dca
Room Park
\ No newline at end of file
.idea/codeStyles/Project.xml
View file @
811a6796
<component
name=
"ProjectCodeStyleConfiguration"
>
<code_scheme
name=
"Project"
version=
"173"
>
<AndroidXmlCodeStyleSettings>
<option
name=
"ARRANGEMENT_SETTINGS_MIGRATED_TO_191"
value=
"true"
/>
</AndroidXmlCodeStyleSettings>
<JetCodeStyleSettings>
<option
name=
"CODE_STYLE_DEFAULTS"
value=
"KOTLIN_OFFICIAL"
/>
</JetCodeStyleSettings>
...
...
.idea/gradle.xml
View file @
811a6796
...
...
@@ -3,6 +3,7 @@
<component
name=
"GradleSettings"
>
<option
name=
"linkedExternalProjectsSettings"
>
<GradleProjectSettings>
<option
name=
"testRunner"
value=
"PLATFORM"
/>
<option
name=
"distributionType"
value=
"DEFAULT_WRAPPED"
/>
<option
name=
"externalProjectPath"
value=
"$PROJECT_DIR$"
/>
<option
name=
"modules"
>
...
...
@@ -12,7 +13,6 @@
</set>
</option>
<option
name=
"resolveModulePerSourceSet"
value=
"false"
/>
<option
name=
"testRunner"
value=
"PLATFORM"
/>
</GradleProjectSettings>
</option>
</component>
...
...
.idea/misc.xml
View file @
811a6796
...
...
@@ -148,10 +148,25 @@
</profile-state>
</entry>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
project-jdk-name=
"JDK"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
default=
"true"
project-jdk-name=
"JDK"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/build/classes"
/>
</component>
<component
name=
"ProjectType"
>
<option
name=
"id"
value=
"Android"
/>
</component>
<component
name=
"masterDetails"
>
<states>
<state
key=
"ScopeChooserConfigurable.UI"
>
<settings>
<splitter-proportions>
<option
name=
"proportions"
>
<list>
<option
value=
"0.19305019"
/>
</list>
</option>
</splitter-proportions>
</settings>
</state>
</states>
</component>
</project>
\ No newline at end of file
.idea/vcs.xml
View file @
811a6796
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"VcsDirectoryMappings"
>
<mapping
directory=
"
$PROJECT_DIR$
"
vcs=
"Git"
/>
<mapping
directory=
""
vcs=
"Git"
/>
</component>
</project>
\ No newline at end of file
app/build.gradle
View file @
811a6796
...
...
@@ -159,7 +159,7 @@ dependencies {
//Glide
implementation
"com.github.bumptech.glide:glide:$glideVersion"
implementation
'jp.wasabeef:glide-transformations:4.0.0'
annotationProcessor
"com.github.bumptech.glide:compiler:$glideVersion"
kapt
"com.github.bumptech.glide:compiler:$glideVersion"
//Tests
testImplementation
'junit:junit:4.12'
...
...
app/src/main/res/layout/settings_screen.xml
View file @
811a6796
...
...
@@ -65,9 +65,8 @@
android:layout_width=
"24dp"
android:layout_height=
"24dp"
android:layout_gravity=
"end|center_vertical"
android:src=
"@drawable/ic_flat"
android:weightSum=
"1"
app:srcCompat=
"@drawable/ic_download"
/>
android:src=
"@drawable/ic_download"
android:weightSum=
"1"
/>
</LinearLayout>
<include
...
...
@@ -99,9 +98,8 @@
android:layout_width=
"24dp"
android:layout_height=
"24dp"
android:layout_gravity=
"end|center_vertical"
android:src=
"@drawable/ic_flat"
android:weightSum=
"1"
app:srcCompat=
"@drawable/ic_download"
/>
android:src=
"@drawable/ic_download"
android:weightSum=
"1"
/>
</LinearLayout>
...
...
build.gradle
View file @
811a6796
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript
{
ext
.
kotlin_version
=
'1.3.
4
1'
ext
.
kotlin_version
=
'1.3.
6
1'
repositories
{
flatDir
{
dirs
'libs'
...
...
@@ -11,7 +11,7 @@ buildscript {
}
dependencies
{
classpath
"com.android.tools.build:gradle:3.
5.0
"
classpath
"com.android.tools.build:gradle:3.
6.1
"
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath
"org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
...
...
gradle/wrapper/gradle-wrapper.properties
View file @
811a6796
...
...
@@ -3,4 +3,5 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-5.6.4-all.zip
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