]> sigrok.org Git - sigrok-androidutils.git/blame - src/org/sigrok/androidutils/SigrokApplication.java
Bundle Java bindings into an AAR for ease of use
[sigrok-androidutils.git] / src / org / sigrok / androidutils / SigrokApplication.java
CommitLineData
711d21ce
MC
1/*
2 * This file is part of the sigrok-androidutils project.
3 *
4 * Copyright (C) 2016 Marcus Comstedt <marcus@mc.pp.se>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20package org.sigrok.androidutils;
21
22import android.app.Application;
23import android.content.Context;
24import android.content.pm.ApplicationInfo;
25import android.content.pm.PackageManager;
26import android.util.Log;
27
28public class SigrokApplication extends Application {
29
30 private static final String JNI_LIBS_RESOURCE_ID_META =
31 "org.sigrok.androidutils.jni_libs_resource_id";
32
33 public SigrokApplication()
34 {
35 }
36
37 public static void initSigrok(Context context)
38 {
39 ApplicationInfo appInfo = context.getApplicationInfo();
40 Environment.initEnvironment(appInfo.sourceDir);
41 UsbHelper.setContext(context);
42 try {
43 appInfo = context.getPackageManager().
44 getApplicationInfo(context.getPackageName(),
45 PackageManager.GET_META_DATA);
46 } catch (PackageManager.NameNotFoundException exc) {
47 }
48 if (appInfo.metaData != null &&
49 appInfo.metaData.containsKey(JNI_LIBS_RESOURCE_ID_META)) {
50 int resId = appInfo.metaData.getInt(JNI_LIBS_RESOURCE_ID_META);
51 String[] libs = context.getResources().getStringArray(resId);
52 int numLibs = libs.length;
53 for (int i = 0; i < numLibs; i++) {
54 String libName = libs[i];
55 System.loadLibrary(libName);
56 }
57 }
58 }
59
60 @Override
61 public void onCreate()
62 {
63 super.onCreate();
64 initSigrok(getApplicationContext());
65 }
66}