Skip to content

Commit 67f2ff3

Browse files
committed
add svga
1 parent f8dce0b commit 67f2ff3

32 files changed

+5470
-2
lines changed

VideoOS/LuaViewSDK/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ android {
5353
dependencies {
5454
compile fileTree(dir: 'libs', include: ['*.jar'])
5555
provided project(path: ':VenvyLibrary')
56-
compile project(path: ':svga')
56+
compile project(path: ':venvy_svga')
5757
provided 'com.android.support:support-v4:25.3.1'
5858
provided 'com.android.support:recyclerview-v7:25.3.1'
5959
provided 'com.android.support:appcompat-v7:25.3.1'

VideoOS/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include ':app'
22
include ':VenvyLibrary'
33
include ':venvy_pub'
4-
//include ':venvy_ai'
4+
include ':venvy_svga'
55
include ':LuaViewSDK'
66
include ':videoos_demo'
77
include ':svga'

VideoOS/venvy_svga/build.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
apply plugin: 'com.android.library'
2+
3+
android {
4+
compileSdkVersion 25
5+
buildToolsVersion '25.0.3'
6+
defaultConfig {
7+
minSdkVersion 14
8+
targetSdkVersion 19
9+
}
10+
buildTypes {
11+
release {
12+
minifyEnabled false
13+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
14+
}
15+
}
16+
17+
lintOptions {
18+
abortOnError false //这是添加的
19+
checkReleaseBuilds false //这是添加的
20+
}
21+
22+
sourceSets {
23+
main {
24+
assets.srcDirs = ['src/main/assets']
25+
}
26+
}
27+
}
28+
29+
30+
dependencies {
31+
compile fileTree(include: ['*.jar'], dir: 'libs')
32+
compile 'com.squareup.wire:wire-runtime:2.3.0-RC1'
33+
provided project(path: ':VenvyLibrary')
34+
provided 'com.android.support:support-v4:25.3.1'
35+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /Users/mac/Library/Android/sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
18+
19+
# Uncomment this to preserve the line number information for
20+
# debugging stack traces.
21+
#-keepattributes SourceFile,LineNumberTable
22+
23+
# If you keep the line number information, uncomment this to
24+
# hide the original source file name.
25+
#-renamesourcefileattribute SourceFile
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<manifest
2+
3+
package="cn.com.venvy.svga">
4+
5+
</manifest>

0 commit comments

Comments
 (0)