Overview of the KMM ecosystem for Android developers. We're hiring and training folks, so pushed the basics into a bunch of slides. https://touchlab.co/careers-3/
natively-integrated, open-source, code sharing platform, based on the popular, modern language kotlin. facilitates non-ui logic availability on many platforms.
natively-integrated, open-source, code sharing platform, based on the popular, modern language kotlin. facilitates non-ui logic availability on many platforms. Oh, and JetBrains!
Kotlin/Native interop with C and Objective C Beta CocoaPods integration Beta Multiplatform IDE support Alpha KMM plugin for Android Studio Experimental
AUTOINCREMENT, name TEXT NOT NULL UNIQUE, favorite INTEGER NOT NULL DEFAULT 0 ); selectAll: SELECT * FROM Breed; selectById: SELECT * FROM Breed WHERE id = ?; selectByName: SELECT * FROM Breed WHERE name = ?; insertBreed: INSERT OR IGNORE INTO Breed(id, name) VALUES (?,?); deleteAll: DELETE FROM Breed; updateFavorite: UPDATE Breed SET favorite = ? WHERE id = ?;