Generate ionic sdkWhere can I find Android source code online?Is quitting an application frowned upon?Android Min SDK Version vs. Target SDK VersionHow to avoid reverse engineering of an APK file?Android Studio: Add jar as library?“cannot resolve symbol R” in Android StudioWhat are the Android SDK build-tools, platform-tools and tools? And which version should be used?Error retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23Automatically accept all SDK licencesYou have not accepted the license agreements of the following SDK components
School House Points (Python + SQLite)
nginx serves wrong domain site. It doenst shows default site if no configuration applies
Why does Hellboy file down his horns?
Cutting machine can't read vectors with strokes
Why limit to revolvers?
Can a continent naturally split into two distant parts within a week?
Is it rude to tell recruiters I would only change jobs for a better salary?
In which ways do anagamis still experience ignorance?
Why is dry soil hydrophobic? Bad gardener paradox
How can I legally visit the United States Minor Outlying Islands in the Pacific?
Metric version of "footage"?
Was the Ford Model T black because of the speed black paint dries?
What is temperature on a quantum level?
Can I intentionally omit previous work experience or pretend it doesn't exist when applying for jobs?
Find the wrong number in the given series: 6, 12, 21, 36, 56, 81?
Players of unusual orchestral instruments
Why did my rum cake turn black?
Filtering fine silt/mud from water (not necessarily bacteria etc.)
What are some symbols representing peasants/oppressed persons fighting back?
Are there any double stars that I can actually see orbit each other?
Ways to express "The reader may wish to..." / "The reader may want to..."
Can I play a first turn Simic Growth Chamber to have 3 mana available in the second turn?
How to check the quality of an audio sample?
Are lithium batteries allowed in the International Space Station?
Generate ionic sdk
Where can I find Android source code online?Is quitting an application frowned upon?Android Min SDK Version vs. Target SDK VersionHow to avoid reverse engineering of an APK file?Android Studio: Add jar as library?“cannot resolve symbol R” in Android StudioWhat are the Android SDK build-tools, platform-tools and tools? And which version should be used?Error retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23Automatically accept all SDK licencesYou have not accepted the license agreements of the following SDK components
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to build a chat application using ionic 4, and also use the same as a component within android and ios native application. Is there any way I can generate an android and ios SDK using ionic project?
android ios ionic-framework
add a comment |
I want to build a chat application using ionic 4, and also use the same as a component within android and ios native application. Is there any way I can generate an android and ios SDK using ionic project?
android ios ionic-framework
add a comment |
I want to build a chat application using ionic 4, and also use the same as a component within android and ios native application. Is there any way I can generate an android and ios SDK using ionic project?
android ios ionic-framework
I want to build a chat application using ionic 4, and also use the same as a component within android and ios native application. Is there any way I can generate an android and ios SDK using ionic project?
android ios ionic-framework
android ios ionic-framework
asked Mar 26 at 5:41
sunil hullursunil hullur
62 bronze badges
62 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can use Cordova along with ionic to build for Android and iOS.
https://cordova.apache.org/#getstarted
Once you have installed Cordova, build the application in iOS by using CLI:
$ ionic cordova prepare ios
Android:
$ ionic cordova prepare android
For further information, you can take a look at these links:
https://ionicframework.com/docs/building/ios
https://ionicframework.com/docs/building/android
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
add a comment |
Interfacing with a native SDK that was machine-generated from Typescript sounds like a nightmare. Even if it's technically possible, I would never attempt it.
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350511%2fgenerate-ionic-sdk%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use Cordova along with ionic to build for Android and iOS.
https://cordova.apache.org/#getstarted
Once you have installed Cordova, build the application in iOS by using CLI:
$ ionic cordova prepare ios
Android:
$ ionic cordova prepare android
For further information, you can take a look at these links:
https://ionicframework.com/docs/building/ios
https://ionicframework.com/docs/building/android
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
add a comment |
You can use Cordova along with ionic to build for Android and iOS.
https://cordova.apache.org/#getstarted
Once you have installed Cordova, build the application in iOS by using CLI:
$ ionic cordova prepare ios
Android:
$ ionic cordova prepare android
For further information, you can take a look at these links:
https://ionicframework.com/docs/building/ios
https://ionicframework.com/docs/building/android
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
add a comment |
You can use Cordova along with ionic to build for Android and iOS.
https://cordova.apache.org/#getstarted
Once you have installed Cordova, build the application in iOS by using CLI:
$ ionic cordova prepare ios
Android:
$ ionic cordova prepare android
For further information, you can take a look at these links:
https://ionicframework.com/docs/building/ios
https://ionicframework.com/docs/building/android
You can use Cordova along with ionic to build for Android and iOS.
https://cordova.apache.org/#getstarted
Once you have installed Cordova, build the application in iOS by using CLI:
$ ionic cordova prepare ios
Android:
$ ionic cordova prepare android
For further information, you can take a look at these links:
https://ionicframework.com/docs/building/ios
https://ionicframework.com/docs/building/android
answered Mar 26 at 6:15
David PhamDavid Pham
419 bronze badges
419 bronze badges
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
add a comment |
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
I am asking whether I can generate SDK from the ionic project that can be used in other native Android or IoS projects.
– sunil hullur
Mar 26 at 7:21
add a comment |
Interfacing with a native SDK that was machine-generated from Typescript sounds like a nightmare. Even if it's technically possible, I would never attempt it.
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
add a comment |
Interfacing with a native SDK that was machine-generated from Typescript sounds like a nightmare. Even if it's technically possible, I would never attempt it.
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
add a comment |
Interfacing with a native SDK that was machine-generated from Typescript sounds like a nightmare. Even if it's technically possible, I would never attempt it.
Interfacing with a native SDK that was machine-generated from Typescript sounds like a nightmare. Even if it's technically possible, I would never attempt it.
answered Apr 23 at 6:28
wcjordwcjord
816 bronze badges
816 bronze badges
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
add a comment |
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
so is it a bad choice to develop native SDK with hydride frameworks?
– sunil hullur
May 2 at 15:06
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55350511%2fgenerate-ionic-sdk%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown