File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
src/com/androidmontreal/opencv Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 22
22
23
23
24
24
<application
25
+ android : name =" AndroidOpenCVforHackathonsApp"
25
26
android : icon =" @drawable/ic_launcher"
26
27
android : label =" @string/app_name" >
27
28
<activity
Original file line number Diff line number Diff line change
1
+ package com .androidmontreal .opencv ;
2
+
3
+ import android .app .Application ;
4
+
5
+ public class AndroidOpenCVforHackathonsApp extends Application {
6
+ public String lastMessage ;
7
+
8
+ @ Override
9
+ public void onCreate () {
10
+ // TODO Auto-generated method stub
11
+ super .onCreate ();
12
+ lastMessage ="No message" ;
13
+ }
14
+
15
+ public String getLastMessage (){
16
+ return this .lastMessage ;
17
+ }
18
+ public void setLastMessage ( String lastMessage ){
19
+ this .lastMessage = lastMessage ;
20
+ }
21
+ }
You can’t perform that action at this time.
0 commit comments