|
|
|
|
|
by realharo
3422 days ago
|
|
It's certainly possible, but comes with a large number of its own issues: - C++ is a way more complicated language with the manual memory management. C is way too low level for things like this. - Complicated builds if you need to use a bunch of C++ libraries as dependencies. - Much slower iteration. - Complicated debugging. - The need to either write (slow) or generate (constraining) the Java/ObjC bindings. Then there are things like having to reconcile the lifetime of your C++ objects with the Android Activity/Fragment lifecycles, etc. If I was faced with the decision of what technology to use for a set of typical mobile apps, I would definitely want to avoid the native C++ path if at all possible. |
|