Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RvApp
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
1
Merge Requests
1
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
lify
RvApp
Commits
b77dfc8a
Commit
b77dfc8a
authored
Aug 14, 2019
by
jianglx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
im 模块的初步提交
parent
dc0c8f53
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
52 additions
and
111 deletions
+52
-111
build.gradle
build.gradle
+4
-1
gradle-wrapper.jar
gradle/wrapper/gradle-wrapper.jar
+0
-0
gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+1
-1
gradlew
gradlew
+42
-30
gradlew.bat
gradlew.bat
+4
-10
.gitignore
plugin_im/.gitignore
+0
-1
build.gradle
plugin_im/build.gradle
+0
-39
proguard-rules.pro
plugin_im/proguard-rules.pro
+0
-21
AndroidManifest.xml
plugin_im/src/main/AndroidManifest.xml
+0
-4
strings.xml
plugin_im/src/main/res/values/strings.xml
+0
-3
settings.gradle
settings.gradle
+1
-1
No files found.
build.gradle
View file @
b77dfc8a
...
@@ -11,6 +11,7 @@ buildscript {
...
@@ -11,6 +11,7 @@ buildscript {
maven
{
maven
{
url
"https://jitpack.io"
url
"https://jitpack.io"
}
}
maven
{
url
'https://github.com/jitsi/jitsi-maven-repository/raw/master/releases'
}
}
}
dependencies
{
dependencies
{
classpath
'com.android.tools.build:gradle:3.2.1'
classpath
'com.android.tools.build:gradle:3.2.1'
...
@@ -29,7 +30,7 @@ allprojects {
...
@@ -29,7 +30,7 @@ allprojects {
flatDir
{
flatDir
{
dirs
'libs'
dirs
'libs'
}
}
maven
{
url
'https://github.com/jitsi/jitsi-maven-repository/raw/master/releases'
}
maven
{
maven
{
url
"http://mvn.mob.com/android"
url
"http://mvn.mob.com/android"
}
}
...
@@ -39,6 +40,8 @@ allprojects {
...
@@ -39,6 +40,8 @@ allprojects {
maven
{
maven
{
url
'https://dl.bintray.com/cjt/maven'
url
'https://dl.bintray.com/cjt/maven'
}
}
maven
{
url
'https://jitpack.io'
}
}
}
}
}
...
...
gradle/wrapper/gradle-wrapper.jar
View file @
b77dfc8a
No preview for this file type
gradle/wrapper/gradle-wrapper.properties
View file @
b77dfc8a
distributionBase
=
GRADLE_USER_HOME
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
distributionPath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-4.6-all.zip
zipStoreBase
=
GRADLE_USER_HOME
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-4.6-all.zip
gradlew
View file @
b77dfc8a
#!/usr/bin/env
ba
sh
#!/usr/bin/env sh
##############################################################################
##############################################################################
##
##
...
@@ -6,20 +6,38 @@
...
@@ -6,20 +6,38 @@
##
##
##############################################################################
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
# Attempt to set APP_HOME
DEFAULT_JVM_OPTS
=
""
# Resolve links: $0 may be a link
PRG
=
"
$0
"
# Need this for relative symlinks.
while
[
-h
"
$PRG
"
]
;
do
ls
=
`
ls
-ld
"
$PRG
"
`
link
=
`
expr
"
$ls
"
:
'.*-> \(.*\)$'
`
if
expr
"
$link
"
:
'/.*'
>
/dev/null
;
then
PRG
=
"
$link
"
else
PRG
=
`
dirname
"
$PRG
"
`
"/
$link
"
fi
done
SAVED
=
"
`
pwd
`
"
cd
"
`
dirname
\"
$PRG
\"
`
/"
>
/dev/null
APP_HOME
=
"
`
pwd
-P
`
"
cd
"
$SAVED
"
>
/dev/null
APP_NAME
=
"Gradle"
APP_NAME
=
"Gradle"
APP_BASE_NAME
=
`
basename
"
$0
"
`
APP_BASE_NAME
=
`
basename
"
$0
"
`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS
=
""
# Use the maximum available, or set MAX_FD != -1 to use that value.
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD
=
"maximum"
MAX_FD
=
"maximum"
warn
(
)
{
warn
()
{
echo
"
$*
"
echo
"
$*
"
}
}
die
(
)
{
die
()
{
echo
echo
echo
"
$*
"
echo
"
$*
"
echo
echo
...
@@ -30,6 +48,7 @@ die ( ) {
...
@@ -30,6 +48,7 @@ die ( ) {
cygwin
=
false
cygwin
=
false
msys
=
false
msys
=
false
darwin
=
false
darwin
=
false
nonstop
=
false
case
"
`
uname
`
"
in
case
"
`
uname
`
"
in
CYGWIN
*
)
CYGWIN
*
)
cygwin
=
true
cygwin
=
true
...
@@ -40,26 +59,11 @@ case "`uname`" in
...
@@ -40,26 +59,11 @@ case "`uname`" in
MINGW
*
)
MINGW
*
)
msys
=
true
msys
=
true
;;
;;
NONSTOP
*
)
nonstop
=
true
;;
esac
esac
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG
=
"
$0
"
# Need this for relative symlinks.
while
[
-h
"
$PRG
"
]
;
do
ls
=
`
ls
-ld
"
$PRG
"
`
link
=
`
expr
"
$ls
"
:
'.*-> \(.*\)$'
`
if
expr
"
$link
"
:
'/.*'
>
/dev/null
;
then
PRG
=
"
$link
"
else
PRG
=
`
dirname
"
$PRG
"
`
"/
$link
"
fi
done
SAVED
=
"
`
pwd
`
"
cd
"
`
dirname
\"
$PRG
\"
`
/"
>
/dev/null
APP_HOME
=
"
`
pwd
-P
`
"
cd
"
$SAVED
"
>
/dev/null
CLASSPATH
=
$APP_HOME
/gradle/wrapper/gradle-wrapper.jar
CLASSPATH
=
$APP_HOME
/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
# Determine the Java command to use to start the JVM.
...
@@ -85,7 +89,7 @@ location of your Java installation."
...
@@ -85,7 +89,7 @@ location of your Java installation."
fi
fi
# Increase the maximum file descriptors if we can.
# Increase the maximum file descriptors if we can.
if
[
"
$cygwin
"
=
"false"
-a
"
$darwin
"
=
"false"
]
;
then
if
[
"
$cygwin
"
=
"false"
-a
"
$darwin
"
=
"false"
-a
"
$nonstop
"
=
"false"
]
;
then
MAX_FD_LIMIT
=
`
ulimit
-H
-n
`
MAX_FD_LIMIT
=
`
ulimit
-H
-n
`
if
[
$?
-eq
0
]
;
then
if
[
$?
-eq
0
]
;
then
if
[
"
$MAX_FD
"
=
"maximum"
-o
"
$MAX_FD
"
=
"max"
]
;
then
if
[
"
$MAX_FD
"
=
"maximum"
-o
"
$MAX_FD
"
=
"max"
]
;
then
...
@@ -150,11 +154,19 @@ if $cygwin ; then
...
@@ -150,11 +154,19 @@ if $cygwin ; then
esac
esac
fi
fi
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
# Escape application args
function
splitJvmOpts
()
{
save
()
{
JVM_OPTS
=(
"
$@
"
)
for
i
do
printf
%s
\\
n
"
$i
"
|
sed
"s/'/'
\\\\
''/g;1s/^/'/;
\$
s/
\$
/'
\\\\
/"
;
done
echo
" "
}
}
eval
splitJvmOpts
$DEFAULT_JVM_OPTS
$JAVA_OPTS
$GRADLE_OPTS
APP_ARGS
=
$(
save
"
$@
"
)
JVM_OPTS[
${#
JVM_OPTS
[*]
}
]=
"-Dorg.gradle.appname=
$APP_BASE_NAME
"
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set
--
$DEFAULT_JVM_OPTS
$JAVA_OPTS
$GRADLE_OPTS
"
\"
-Dorg.gradle.appname=
$APP_BASE_NAME
\"
"
-classpath
"
\"
$CLASSPATH
\"
"
org.gradle.wrapper.GradleWrapperMain
"
$APP_ARGS
"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if
[
"
$(
uname
)
"
=
"Darwin"
]
&&
[
"
$HOME
"
=
"
$PWD
"
]
;
then
cd
"
$(
dirname
"
$0
"
)
"
fi
exec
"
$JAVACMD
"
"
$
{
JVM_OPTS
[@]
}
"
-classpath
"
$CLASSPATH
"
org.gradle.wrapper.GradleWrapperMain
"
$
@
"
exec
"
$JAVACMD
"
"
$@
"
gradlew.bat
View file @
b77dfc8a
...
@@ -8,14 +8,14 @@
...
@@ -8,14 +8,14 @@
@rem Set local scope for the variables with windows NT shell
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
set APP_HOME=%DIRNAME%
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
@rem Find java.exe
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
if defined JAVA_HOME goto findJavaFromJavaHome
...
@@ -46,10 +46,9 @@ echo location of your Java installation.
...
@@ -46,10 +46,9 @@ echo location of your Java installation.
goto fail
goto fail
:init
:init
@rem Get command-line arguments, handling Window
z
variants
@rem Get command-line arguments, handling Window
s
variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
@rem Slurp the command line arguments.
...
@@ -60,11 +59,6 @@ set _SKIP=2
...
@@ -60,11 +59,6 @@ set _SKIP=2
if "x%~1" == "x" goto execute
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
:execute
@rem Setup the command line
@rem Setup the command line
...
...
plugin_im/.gitignore
deleted
100644 → 0
View file @
dc0c8f53
/build
plugin_im/build.gradle
deleted
100644 → 0
View file @
dc0c8f53
apply
plugin:
'com.android.library'
android
{
compileSdkVersion
28
defaultConfig
{
minSdkVersion
19
targetSdkVersion
28
versionCode
1
versionName
"1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes
{
release
{
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
compileOptions
{
sourceCompatibility
=
'1.8'
targetCompatibility
=
'1.8'
}
}
dependencies
{
implementation
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
implementation
'com.android.support:appcompat-v7:28.0.0'
implementation
'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation
'junit:junit:4.12'
androidTestImplementation
'com.android.support.test:runner:1.0.2'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
}
plugin_im/proguard-rules.pro
deleted
100644 → 0
View file @
dc0c8f53
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
plugin_im/src/main/AndroidManifest.xml
deleted
100644 → 0
View file @
dc0c8f53
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"com.rv.im"
>
</manifest>
\ No newline at end of file
plugin_im/src/main/res/values/strings.xml
deleted
100644 → 0
View file @
dc0c8f53
<resources>
<string
name=
"app_name"
>
plugin_im
</string>
</resources>
settings.gradle
View file @
b77dfc8a
include
':RvFrame'
,
':plugin_carpurchase'
,
':p
lugin_im
'
include
':RvFrame'
,
':plugin_carpurchase'
,
':p
ullToRefershLibraryMy'
,
':YZxing-lib'
,
':meeting'
,
':skWeiChatBaidu'
,
':OpenGLlibrary'
,
':jcvideoplayer-lib
'
include
':RvTravel'
include
':RvTravel'
include
':RvClient'
include
':RvClient'
include
':RvWrapper'
include
':RvWrapper'
...
...
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