Skip to content

Commit 93a588d

Browse files
Initial commit
0 parents  commit 93a588d

35 files changed

+831
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/libraries
5+
/.idea/modules.xml
6+
/.idea/workspace.xml
7+
.DS_Store
8+
/build
9+
/captures
10+
.externalNativeBuild

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
apply plugin: 'com.android.application'
2+
3+
apply plugin: 'kotlin-android'
4+
5+
apply plugin: 'kotlin-android-extensions'
6+
7+
android {
8+
compileSdkVersion 27
9+
defaultConfig {
10+
applicationId "io.github.the_dagger.mlkit"
11+
minSdkVersion 21
12+
targetSdkVersion 27
13+
versionCode 1
14+
versionName "1.0"
15+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
16+
}
17+
buildTypes {
18+
release {
19+
minifyEnabled false
20+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
21+
}
22+
}
23+
}
24+
25+
dependencies {
26+
implementation fileTree(dir: 'libs', include: ['*.jar'])
27+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
28+
implementation 'com.android.support:appcompat-v7:27.1.1'
29+
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
30+
implementation 'com.google.firebase:firebase-ml-vision:15.0.0'
31+
implementation 'com.google.firebase:firebase-ml-vision-image-label-model:15.0.0'
32+
implementation 'com.google.firebase:firebase-core:15.0.2'
33+
testImplementation 'junit:junit:4.12'
34+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
35+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
36+
implementation 'com.wonderkiln:camerakit:0.13.1'
37+
}
38+
39+
apply plugin: 'com.google.gms.google-services'

app/google-services.json

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"project_info": {
3+
"project_number": "948655078679",
4+
"firebase_url": "https://mlkit-677d1.firebaseio.com",
5+
"project_id": "mlkit-677d1",
6+
"storage_bucket": "mlkit-677d1.appspot.com"
7+
},
8+
"client": [
9+
{
10+
"client_info": {
11+
"mobilesdk_app_id": "1:948655078679:android:9f30892d2780bd14",
12+
"android_client_info": {
13+
"package_name": "io.github.the_dagger.mlkit"
14+
}
15+
},
16+
"oauth_client": [
17+
{
18+
"client_id": "948655078679-ps5nj5h7votpaogk923sbrih6pgdonmd.apps.googleusercontent.com",
19+
"client_type": 1,
20+
"android_info": {
21+
"package_name": "io.github.the_dagger.mlkit",
22+
"certificate_hash": "36a155889435b9499a0b97fd8e85a3bb840d5e16"
23+
}
24+
},
25+
{
26+
"client_id": "948655078679-9a3pn01sjfoi7lcfbbgq28q85t6t786i.apps.googleusercontent.com",
27+
"client_type": 3
28+
}
29+
],
30+
"api_key": [
31+
{
32+
"current_key": "AIzaSyBki-tToritqrkk0_ZjwukWTk8_-QWXKo0"
33+
}
34+
],
35+
"services": {
36+
"analytics_service": {
37+
"status": 1
38+
},
39+
"appinvite_service": {
40+
"status": 2,
41+
"other_platform_oauth_client": [
42+
{
43+
"client_id": "948655078679-9a3pn01sjfoi7lcfbbgq28q85t6t786i.apps.googleusercontent.com",
44+
"client_type": 3
45+
}
46+
]
47+
},
48+
"ads_service": {
49+
"status": 2
50+
}
51+
}
52+
}
53+
],
54+
"configuration_version": "1"
55+
}

app/proguard-rules.pro

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package io.github.the_dagger.mlkit
2+
3+
import android.support.test.InstrumentationRegistry
4+
import android.support.test.runner.AndroidJUnit4
5+
6+
import org.junit.Test
7+
import org.junit.runner.RunWith
8+
9+
import org.junit.Assert.*
10+
11+
/**
12+
* Instrumented test, which will execute on an Android device.
13+
*
14+
* See [testing documentation](http://d.android.com/tools/testing).
15+
*/
16+
@RunWith(AndroidJUnit4::class)
17+
class ExampleInstrumentedTest {
18+
@Test
19+
fun useAppContext() {
20+
// Context of the app under test.
21+
val appContext = InstrumentationRegistry.getTargetContext()
22+
assertEquals("io.github.the_dagger.mlkit", appContext.packageName)
23+
}
24+
}

app/src/main/AndroidManifest.xml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="io.github.the_dagger.mlkit">
4+
5+
<application
6+
android:allowBackup="true"
7+
android:icon="@mipmap/ic_launcher"
8+
android:label="@string/app_name"
9+
android:roundIcon="@mipmap/ic_launcher_round"
10+
android:supportsRtl="true"
11+
android:theme="@style/AppTheme">
12+
<meta-data
13+
android:name="com.google.firebase.ml.vision.DEPENDENCIES"
14+
android:value="label" />
15+
<activity android:name=".MainActivity">
16+
<intent-filter>
17+
<action android:name="android.intent.action.MAIN" />
18+
19+
<category android:name="android.intent.category.LAUNCHER" />
20+
</intent-filter>
21+
</activity>
22+
</application>
23+
24+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
package io.github.the_dagger.mlkit
2+
3+
import android.Manifest
4+
import android.content.Context
5+
import android.hardware.camera2.CameraManager
6+
import android.support.v7.app.AppCompatActivity
7+
import android.os.Bundle
8+
import android.support.v4.app.ActivityCompat
9+
import android.view.SurfaceView
10+
import android.view.TextureView
11+
import android.graphics.SurfaceTexture
12+
import android.hardware.Camera
13+
import android.hardware.camera2.CameraAccessException
14+
import android.hardware.camera2.CameraCharacteristics
15+
import android.hardware.camera2.params.StreamConfigurationMap
16+
import android.util.Size
17+
import android.content.pm.PackageManager
18+
19+
20+
21+
22+
lateinit var cameraManager: CameraManager
23+
const val facingBack = CameraCharacteristics.LENS_FACING_BACK
24+
lateinit var actualCameraId : String
25+
26+
class MainActivity : AppCompatActivity() {
27+
override fun onCreate(savedInstanceState: Bundle?) {
28+
super.onCreate(savedInstanceState)
29+
setContentView(R.layout.activity_main)
30+
31+
ActivityCompat.requestPermissions(this, Array(1) { Manifest.permission.CAMERA }, 123)
32+
cameraManager = getSystemService(Context.CAMERA_SERVICE) as CameraManager
33+
val surfaceTextureListener = object : TextureView.SurfaceTextureListener {
34+
35+
override fun onSurfaceTextureSizeChanged(surface: SurfaceTexture?, width: Int, height: Int) = Unit
36+
37+
override fun onSurfaceTextureUpdated(surface: SurfaceTexture?) = Unit
38+
39+
override fun onSurfaceTextureDestroyed(surface: SurfaceTexture?) = false
40+
41+
override fun onSurfaceTextureAvailable(surface: SurfaceTexture?, width: Int, height: Int) {
42+
43+
}
44+
}
45+
}
46+
47+
fun setupCamera() {
48+
try {
49+
for (cameraId: String in cameraManager.cameraIdList) {
50+
val cameraCharacteristics: CameraCharacteristics = cameraManager.getCameraCharacteristics(cameraId)
51+
if (cameraCharacteristics.get(CameraCharacteristics.LENS_FACING) == facingBack){
52+
val streamConfigurationMap = cameraCharacteristics.get(
53+
CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP)
54+
val previewSize: Size = streamConfigurationMap.getOutputSizes(SurfaceTexture::class.java)[0]
55+
actualCameraId = cameraId
56+
}
57+
}
58+
} catch (e: CameraAccessException) {
59+
e.printStackTrace()
60+
}
61+
}
62+
63+
private fun openCamera() {
64+
try {
65+
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.CAMERA) == PackageManager.PERMISSION_GRANTED) {
66+
cameraManager.openCamera(cameraId, stateCallback, backgroundHandler)
67+
}
68+
} catch (e: CameraAccessException) {
69+
e.printStackTrace()
70+
}
71+
72+
}
73+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:aapt="http://schemas.android.com/aapt"
3+
android:width="108dp"
4+
android:height="108dp"
5+
android:viewportHeight="108"
6+
android:viewportWidth="108">
7+
<path
8+
android:fillType="evenOdd"
9+
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
10+
android:strokeColor="#00000000"
11+
android:strokeWidth="1">
12+
<aapt:attr name="android:fillColor">
13+
<gradient
14+
android:endX="78.5885"
15+
android:endY="90.9159"
16+
android:startX="48.7653"
17+
android:startY="61.0927"
18+
android:type="linear">
19+
<item
20+
android:color="#44000000"
21+
android:offset="0.0" />
22+
<item
23+
android:color="#00000000"
24+
android:offset="1.0" />
25+
</gradient>
26+
</aapt:attr>
27+
</path>
28+
<path
29+
android:fillColor="#FFFFFF"
30+
android:fillType="nonZero"
31+
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
32+
android:strokeColor="#00000000"
33+
android:strokeWidth="1" />
34+
</vector>
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<vector android:height="24dp" android:tint="#FFFFFF"
2+
android:viewportHeight="24.0" android:viewportWidth="24.0"
3+
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
4+
<path android:fillColor="#FF000000" android:pathData="M12,12m-3.2,0a3.2,3.2 0,1 1,6.4 0a3.2,3.2 0,1 1,-6.4 0"/>
5+
<path android:fillColor="#FF000000" android:pathData="M9,2L7.17,4L4,4c-1.1,0 -2,0.9 -2,2v12c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2h-3.17L15,2L9,2zM12,17c-2.76,0 -5,-2.24 -5,-5s2.24,-5 5,-5 5,2.24 5,5 -2.24,5 -5,5z"/>
6+
</vector>

0 commit comments

Comments
 (0)