-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
90 additions
and
41 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
pluginManagement { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
|
||
rootProject.name = "RevealSwipe" | ||
include ':revealswipe' | ||
include ':sample' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Copyright 2020 The Android Open Source Project | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
#Whether to use 'space', 'tab' or 'mixed' (both) characters for indentation. | ||
#The default value is 'tab'. | ||
org.eclipse.jdt.core.formatter.tabulation.char=space | ||
|
||
#Number of spaces used for indentation in case 'space' characters | ||
#have been selected. The default value is 4. | ||
org.eclipse.jdt.core.formatter.tabulation.size=4 | ||
|
||
#Number of spaces used for indentation in case 'mixed' characters | ||
#have been selected. The default value is 4. | ||
org.eclipse.jdt.core.formatter.indentation.size=4 | ||
|
||
#Whether or not indentation characters are inserted into empty lines. | ||
#The default value is 'true'. | ||
org.eclipse.jdt.core.formatter.indent_empty_lines=false | ||
|
||
#Number of spaces used for multiline indentation. | ||
#The default value is 2. | ||
groovy.formatter.multiline.indentation=2 | ||
|
||
#Length after which list are considered too long. These will be wrapped. | ||
#The default value is 30. | ||
groovy.formatter.longListLength=30 | ||
|
||
#Whether opening braces position shall be the next line. | ||
#The default value is 'same'. | ||
groovy.formatter.braces.start=same | ||
|
||
#Whether closing braces position shall be the next line. | ||
#The default value is 'next'. | ||
groovy.formatter.braces.end=next | ||
|
||
#Remove unnecessary semicolons. The default value is 'false'. | ||
groovy.formatter.remove.unnecessary.semicolons=false |