sqlite file name

This commit is contained in:
Chris Li 2016-11-12 15:58:46 -05:00
parent e9f20d1603
commit 5f1352e4b6
4 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1.8.2376</string>
<string>1.8.2377</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>

View File

@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.8.2376</string>
<string>1.8.2377</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionMainStoryboard</key>

View File

@ -372,6 +372,7 @@
970A2A201DD562B60078BB7C /* old */ = {
isa = PBXGroup;
children = (
97DF259B1D6F7612001648A3 /* BookOperation.swift */,
97D6811D1D6F70AC00E5FA99 /* RefreshLibraryOperation.swift */,
);
name = old;
@ -774,7 +775,6 @@
97D6811C1D6F70AC00E5FA99 /* GlobalQueue.swift */,
9764CBD21D8083AA00072D6A /* ArticleOperation.swift */,
974F33C51D99CAD700879D35 /* BookmarkOperation.swift */,
97DF259B1D6F7612001648A3 /* BookOperation.swift */,
970A2A211DD562CB0078BB7C /* BookOperations.swift */,
973208281DD223DB00EDD3DC /* RefreshLibrary.swift */,
97D6811E1D6F70AC00E5FA99 /* ScanLocalBookOperation.swift */,

View File

@ -13,7 +13,7 @@ class CoreDataContainer: NSPersistentContainer {
init() {
let modelURL = Bundle.main.url(forResource: "Kiwix", withExtension: "momd")!
let model = NSManagedObjectModel(contentsOf: modelURL)!
super.init(name: "Kiwix", managedObjectModel: model)
super.init(name: "kiwix", managedObjectModel: model)
loadPersistentStores { (_, _) in }
}