Showing
5 changed files
with
5 additions
and
7 deletions
... | @@ -4,10 +4,8 @@ | ... | @@ -4,10 +4,8 @@ |
4 | <component name="GradleSettings"> | 4 | <component name="GradleSettings"> |
5 | <option name="linkedExternalProjectsSettings"> | 5 | <option name="linkedExternalProjectsSettings"> |
6 | <GradleProjectSettings> | 6 | <GradleProjectSettings> |
7 | - <compositeConfiguration> | ||
8 | - <compositeBuild compositeDefinitionSource="SCRIPT" /> | ||
9 | - </compositeConfiguration> | ||
10 | <option name="delegatedBuild" value="false" /> | 7 | <option name="delegatedBuild" value="false" /> |
8 | + <option name="testRunner" value="PLATFORM" /> | ||
11 | <option name="distributionType" value="DEFAULT_WRAPPED" /> | 9 | <option name="distributionType" value="DEFAULT_WRAPPED" /> |
12 | <option name="externalProjectPath" value="$PROJECT_DIR$" /> | 10 | <option name="externalProjectPath" value="$PROJECT_DIR$" /> |
13 | <option name="modules"> | 11 | <option name="modules"> |
... | @@ -17,7 +15,6 @@ | ... | @@ -17,7 +15,6 @@ |
17 | </set> | 15 | </set> |
18 | </option> | 16 | </option> |
19 | <option name="resolveModulePerSourceSet" value="false" /> | 17 | <option name="resolveModulePerSourceSet" value="false" /> |
20 | - <option name="testRunner" value="PLATFORM" /> | ||
21 | </GradleProjectSettings> | 18 | </GradleProjectSettings> |
22 | </option> | 19 | </option> |
23 | </component> | 20 | </component> | ... | ... |
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | <project version="4"> | 2 | <project version="4"> |
3 | - <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK"> | 3 | + <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="JDK" project-jdk-type="JavaSDK"> |
4 | <output url="file://$PROJECT_DIR$/build/classes" /> | 4 | <output url="file://$PROJECT_DIR$/build/classes" /> |
5 | </component> | 5 | </component> |
6 | <component name="ProjectType"> | 6 | <component name="ProjectType"> | ... | ... |
... | @@ -16,7 +16,7 @@ public class CallLogDataBase { | ... | @@ -16,7 +16,7 @@ public class CallLogDataBase { |
16 | +TYPE+" integer not null , " | 16 | +TYPE+" integer not null , " |
17 | +NAME + " text not null," | 17 | +NAME + " text not null," |
18 | +NUMBER + " text not null," | 18 | +NUMBER + " text not null," |
19 | - +DURATION + " inteter not null," | 19 | + +DURATION + " integer not null," |
20 | +DATE + " text);"; | 20 | +DATE + " text);"; |
21 | } | 21 | } |
22 | } | 22 | } | ... | ... |
... | @@ -257,7 +257,8 @@ public class DBHelper { | ... | @@ -257,7 +257,8 @@ public class DBHelper { |
257 | values.put(Databases.CreateDB_PhoneInfo.SIMSTATE, simstate); | 257 | values.put(Databases.CreateDB_PhoneInfo.SIMSTATE, simstate); |
258 | values.put(Databases.CreateDB_PhoneInfo.ISNETWORKROMING, isnetworkroming); | 258 | values.put(Databases.CreateDB_PhoneInfo.ISNETWORKROMING, isnetworkroming); |
259 | db.insert(Databases.CreateDB_PhoneInfo.TABLE_NAME, null, values); | 259 | db.insert(Databases.CreateDB_PhoneInfo.TABLE_NAME, null, values); |
260 | - Log.d("LogTest","addPhoneInfo"); | 260 | + Log.d("LogTest", "addPhoneInfo"); |
261 | + } | ||
261 | 262 | ||
262 | public long insertCallLogColumn(String type, String name, String number, String duration | 263 | public long insertCallLogColumn(String type, String name, String number, String duration |
263 | , String date){ | 264 | , String date){ | ... | ... |
This diff is collapsed. Click to expand it.
-
Please register or login to post a comment