Skip to content

Commit 04ef36e

Browse files
committed
Safely build 64-bit binaries along with some modernization.
1 parent 477aee8 commit 04ef36e

File tree

20 files changed

+27
-179
lines changed

20 files changed

+27
-179
lines changed

.idea/compiler.xml

-22
This file was deleted.

.idea/encodings.xml

-6
This file was deleted.

.idea/gradle.xml

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

-118
This file was deleted.

.idea/inspectionProfiles/profiles_settings.xml

-7
This file was deleted.

UVCCamera.iml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="UVCCamera" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="UVCCamera" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="java-gradle" name="Java-Gradle">
55
<configuration>

build.gradle

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,18 @@
22
buildscript {
33
repositories {
44
jcenter()
5+
google()
56
}
67
dependencies {
7-
classpath 'com.android.tools.build:gradle:2.3.1'
8+
classpath 'com.android.tools.build:gradle:3.1.4'
89
}
910
}
1011

1112
allprojects {
1213
repositories {
13-
maven { url 'http://raw.github.com/saki4510t/libcommon/master/repository/' }
14+
maven { url 'https://raw.github.com/saki4510t/libcommon/master/repository/' }
1415
jcenter()
16+
google()
1517
}
1618
}
1719

@@ -22,7 +24,7 @@ task clean(type: Delete) {
2224
ext {
2325
supportLibVersion = '25.3.1' // variable that can be referenced to keep support libs consistent
2426
commonLibVersion= '1.5.20'
25-
versionBuildTool = '25.0.2'
27+
versionBuildTool = '28.0.3'
2628
versionCompiler = 25
2729
versionTarget = 23
2830
versionNameString = '1.0.0'
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Mar 15 17:08:49 JST 2017
1+
#Wed Sep 26 17:44:21 JST 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

libuvccamera/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ task ndkClean(type: Exec, description: 'clean JNI libraries') {
8484
clean.dependsOn 'ndkClean'
8585

8686
dependencies {
87-
compile fileTree(dir: new File(buildDir, 'libs'), include: '*.jar')
88-
compile "com.android.support:support-annotations:${supportLibVersion}"
89-
compile("com.serenegiant:common:${commonLibVersion}") {
87+
api fileTree(dir: new File(buildDir, 'libs'), include: '*.jar')
88+
api "com.android.support:support-annotations:${supportLibVersion}"
89+
api("com.serenegiant:common:${commonLibVersion}") {
9090
exclude module: 'support-v4'
9191
}
9292
}

libuvccamera/src/main/jni/Application.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
#NDK_TOOLCHAIN_VERSION := 4.9
2828

2929
APP_PLATFORM := android-14
30-
APP_ABI := armeabi armeabi-v7a x86 mips
30+
APP_ABI := all
3131
#APP_OPTIM := debug
3232
APP_OPTIM := release

usbCameraCommon/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ android {
4646
}
4747

4848
dependencies {
49-
compile fileTree(dir: 'libs', include: ['*.jar'])
50-
compile("com.serenegiant:common:${commonLibVersion}") {
49+
api fileTree(dir: 'libs', include: ['*.jar'])
50+
api("com.serenegiant:common:${commonLibVersion}") {
5151
exclude module: 'support-v4'
5252
}
53-
compile project(':libuvccamera')
53+
api project(':libuvccamera')
5454
}

usbCameraTest/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':libuvccamera')
52+
implementation project(':libuvccamera')
5353
}

usbCameraTest0/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':libuvccamera')
52+
implementation project(':libuvccamera')
5353
}

usbCameraTest2/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':libuvccamera')
52+
implementation project(':libuvccamera')
5353
}

usbCameraTest3/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':usbCameraCommon')
52+
implementation project(':usbCameraCommon')
5353
}

usbCameraTest4/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':usbCameraCommon')
52+
implementation project(':usbCameraCommon')
5353
}

usbCameraTest5/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':usbCameraCommon')
52+
implementation project(':usbCameraCommon')
5353
}

usbCameraTest6/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ android {
4949
}
5050

5151
dependencies {
52-
compile project(':usbCameraCommon')
52+
implementation project(':usbCameraCommon')
5353
}

usbCameraTest7/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ android {
5151
}
5252

5353
dependencies {
54-
compile project(':usbCameraCommon')
54+
implementation project(':usbCameraCommon')
5555
}

usbCameraTest8/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ android {
5151
}
5252

5353
dependencies {
54-
compile fileTree(dir: 'libs', include: ['*.jar'])
55-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
54+
implementation fileTree(dir: 'libs', include: ['*.jar'])
55+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
5656
exclude group: 'com.android.support', module: 'support-annotations'
5757
})
58-
testCompile 'junit:junit:4.12'
58+
testImplementation 'junit:junit:4.12'
5959

60-
compile project(':usbCameraCommon')
60+
implementation project(':usbCameraCommon')
6161
}

0 commit comments

Comments
 (0)