Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design2
/
2016104137
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
유희정
2020-04-21 17:35:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ce920f419b685ad955d7e18e1239cdf67bf00fe3
ce920f41
1 parent
fcb56ec0
modify
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
7 deletions
source/DataExtraction/.idea/gradle.xml
source/DataExtraction/.idea/misc.xml
source/DataExtraction/app/src/main/java/com/example/dataextraction/CallLogDataBase.java
source/DataExtraction/app/src/main/java/com/example/dataextraction/DBHelper.java
source/DataExtraction/app/src/main/java/com/example/dataextraction/MainActivity.java
source/DataExtraction/.idea/gradle.xml
View file @
ce920f4
...
...
@@ -4,10 +4,8 @@
<component
name=
"GradleSettings"
>
<option
name=
"linkedExternalProjectsSettings"
>
<GradleProjectSettings>
<compositeConfiguration>
<compositeBuild
compositeDefinitionSource=
"SCRIPT"
/>
</compositeConfiguration>
<option
name=
"delegatedBuild"
value=
"false"
/>
<option
name=
"testRunner"
value=
"PLATFORM"
/>
<option
name=
"distributionType"
value=
"DEFAULT_WRAPPED"
/>
<option
name=
"externalProjectPath"
value=
"$PROJECT_DIR$"
/>
<option
name=
"modules"
>
...
...
@@ -17,7 +15,6 @@
</set>
</option>
<option
name=
"resolveModulePerSourceSet"
value=
"false"
/>
<option
name=
"testRunner"
value=
"PLATFORM"
/>
</GradleProjectSettings>
</option>
</component>
...
...
source/DataExtraction/.idea/misc.xml
View file @
ce920f4
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_7"
project-jdk-name=
"
1.8
"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_7"
project-jdk-name=
"
JDK
"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/build/classes"
/>
</component>
<component
name=
"ProjectType"
>
...
...
source/DataExtraction/app/src/main/java/com/example/dataextraction/CallLogDataBase.java
View file @
ce920f4
...
...
@@ -16,7 +16,7 @@ public class CallLogDataBase {
+
TYPE
+
" integer not null , "
+
NAME
+
" text not null,"
+
NUMBER
+
" text not null,"
+
DURATION
+
" inte
t
er not null,"
+
DURATION
+
" inte
g
er not null,"
+
DATE
+
" text);"
;
}
}
...
...
source/DataExtraction/app/src/main/java/com/example/dataextraction/DBHelper.java
View file @
ce920f4
...
...
@@ -257,7 +257,8 @@ public class DBHelper {
values
.
put
(
Databases
.
CreateDB_PhoneInfo
.
SIMSTATE
,
simstate
);
values
.
put
(
Databases
.
CreateDB_PhoneInfo
.
ISNETWORKROMING
,
isnetworkroming
);
db
.
insert
(
Databases
.
CreateDB_PhoneInfo
.
TABLE_NAME
,
null
,
values
);
Log
.
d
(
"LogTest"
,
"addPhoneInfo"
);
Log
.
d
(
"LogTest"
,
"addPhoneInfo"
);
}
public
long
insertCallLogColumn
(
String
type
,
String
name
,
String
number
,
String
duration
,
String
date
){
...
...
source/DataExtraction/app/src/main/java/com/example/dataextraction/MainActivity.java
View file @
ce920f4
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment