Last change
on this file since 14082 was 14082, checked in by Eric.Larour, 12 years ago |
NEW: fixed unresolved symbols when using android logging capability (Android.mk).
Introduced logging from libISSMCore.a directly into JNI using the _pprintLine_ macro and android
logging capabilities. Requires android ndk setup -> made corresponding mods in src/c/io
and m4/ and configs/
In short, we can now construct FemModel within the ISSM android app!
|
File size:
780 bytes
|
Line | |
---|
1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
---|
2 | package="gov.nasa.jpl.issm.visual"
|
---|
3 | android:versionCode="1"
|
---|
4 | android:versionName="1.0" >
|
---|
5 |
|
---|
6 | <uses-sdk
|
---|
7 | android:minSdkVersion="8"
|
---|
8 | android:targetSdkVersion="15" />
|
---|
9 |
|
---|
10 | <application
|
---|
11 | android:icon="@drawable/ic_launcher"
|
---|
12 | android:label="@string/app_name"
|
---|
13 | android:theme="@style/AppTheme" >
|
---|
14 | <activity
|
---|
15 | android:name=".ISSMVisual"
|
---|
16 | android:label="@string/title_activity_issmvisual" >
|
---|
17 | <intent-filter>
|
---|
18 | <action android:name="android.intent.action.MAIN" />
|
---|
19 |
|
---|
20 | <category android:name="android.intent.category.LAUNCHER" />
|
---|
21 | </intent-filter>
|
---|
22 | </activity>
|
---|
23 | </application>
|
---|
24 |
|
---|
25 | </manifest> |
---|
Note:
See
TracBrowser
for help on using the repository browser.