1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-10 00:05:42 +02:00
Files
.github
Assets
docs
packages
app-cli
app-clipper
app-desktop
app-mobile
android
components
ios
Joplin
Images.xcassets
AppDelegate.h
AppDelegate.m
Info.plist
Joplin.entitlements
LaunchScreen.storyboard
main.m
Joplin-tvOS
Joplin-tvOSTests
Joplin.xcodeproj
Joplin.xcworkspace
JoplinTests
ShareExtension
Podfile
Podfile.lock
locales
pluginAssets
services
tools
utils
.buckconfig
.flowconfig
.gitattributes
.gitignore
.prettierrc.js
.watchmanconfig
PluginAssetsLoader.ts
app.json
babel.config.js
clean_build.bat
gulpfile.js
index.js
metro.config.js
package-lock.json
package.json
root.tsx
setupQuickActions.ts
tsconfig.json
fork-htmlparser2
fork-sax
generator-joplin
lib
plugin-repo-cli
plugins
renderer
server
tools
turndown
turndown-plugin-gfm
readme
.dockerignore
.env-sample
.eslintignore
.eslintrc.js
.gitignore
BUILD.md
CONTRIBUTING.md
DEPLOY.md
Dockerfile.server
Joplin_install_and_update.sh
LICENSE
README.md
SECURITY.md
_config.yml
appveyor.yml
docker-compose.db-dev.yml
docker-compose.server-dev.yml
docker-compose.server.yml
gulpfile.js
joplin.code-workspace
lerna.json
lint-staged.config.js
package-lock.json
package.json
tsconfig.eslint.json
tsconfig.json
joplin/packages/app-mobile/ios/Joplin/main.m

10 lines
200 B
Mathematica
Raw Normal View History

2017-05-06 15:37:28 +01:00
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}