How do I implement Google fitkit in flutter? - android-studio

I am implementing Google Fit kit in flutter, I use the client ID in the app folder and use the permissions inside app -> build but when I open the page it asks for permission and when I give permission the app crashes.

you can use fit_fit plugin to get fitness data from google fit it's much more easier.
https://pub.dev/packages/fit_kit

Related

how to make the app which hide the phone apps with Flutter

Im trying to make the application which is used to hide the application the phone applications with using the flutter. How to make this with flutter. Answers
use wechat_assets_picker: package . It will help you to pick the exact/original path. After getting the original path now you can do any sort of operation easily! You can read /write on external storage for further operations

Can we get windows user details in chrome extension?

I am adding a webchat(connected to bot framework) as extension in google chrome. I need to capture windows user details by javascript.
Nope, there's no API that can do it. You're welcome to see the list yourself.
There are 2 ideas that come close:
chrome.identity API can provide you the details of the Google user if the user is signed into Chrome - if you just need some sort of identifier. You'd need "identity" and "identity.email" permissions and would need to call chrome.identity.getProfileUserInfo. Interestingly, that produces no permission warnings.
Native Messaging allows you to create a Windows binary that your extension can talk to. Obviously, a native application can do whatever, including getting the signed-in user details, but that requires users to install another component from outside Web Store. In short: it's a big hammer that's likely not worth it for just this.

How to detect the malware app

I am a developer which working on security related area.Recently I
met a little problem. If I got a app such as android .apk or IOS .ipa.
How can I check whether it has malicious actions?
The first thought came to my mind is to check its manifest. To see
which kind of permission it has requested. But this general method can
not detect some actions such as record the screen snapshot or record
user tap position on screen.
Then I switched to search how app store and google play check the
app which submitted by developers. Turns out that they first check the
certificate or signature of the app to make sure it has been published
by trusted organization. Then statically check the system permission
that the app requested.
I guess there must be some in-depth detection method or theory
which used by google and apple to make sure their app is safe to
download. Can anyone provide me some useful information or website
link that I can learn from?
Thank you.

Set up Google Analytics to track a command line Node app

I'd like to use Google Analytics to track usage of a command line Node app. Tracking will be strictly opt-in. I'd like to track basic usage, plus which operating system and version of Node was used.
I've found the Measurement Protocol, but I'm wondering whats the best way to set up Google Analytics.
You can choose from Web or App - App seems the best fit, but then I'm sent to Firebase to set up an iOS, Android or Web app. None of these are correct. So is 'Web' the best way to track my app usage? Or is Google Analytics not the right approach?
Seems like the best approach is Google Measurement Protocol. There's a Node library for it.
Really Google Analytics is completely designed around web apps and more recently mobile apps, it has concepts like "page views" which don't make sense for CLIs, and Firebase Analytics is only for Android and iOS.
You might be able to shoehorn he CLI use case for some purposes. Alternatively, you could consider using a cloud database like Firebase real-time DB to capture your own events.
Google analytics really isnt designed for something like this. You have only two options web app where everything is page based. http://example.com/hello.php vs using a mobile app where everything is screen based. Home, about, help.
I have done this before with several console applications, a custom SSIS task (dll) and an arduino project. I chose mobile application mainly because i thought it was closer. I know of someone who did the same with an actions on google project.
In the end what you use will be up to you. Just consider what it is you want to track exactly and lay it out before you start.
If you choose mobile make sure you send Screen views and not page views. The Google analytics website is split you cant mix and match the hit type.
Workaround for createing moble account without firebase.
create a new web property on Google analytics type Web
create a new view under that web property type mobile.
We made Console Cat for this exact purpose! It's built from the ground up to track telemetry / analytics for CLIs including things like flags, command duration, version, etc.

API to provide Apple App Store ratings from within an iPhone application

I have created an application for the iPhone with many features and would like to add a 'rating feature' to it. The user can then, from within my application, provide an Apple App Store rating -- so that my application can be shown at the top.
Does anyone know how to add this feature to an iPhone app?
I don't think it's possible to have the user rate your application in the App Store from within your application. Instead you can link to your application in the App Store (create an NSURL and use openURL to open it) so that users can provide a rating there. To get the correct link to your app, find it in the App Store and select Copy Link from the menu directly under your application's icon.
you can use an API such as iRate https://github.com/nicklockwood/iRate
It redirects the user to the appropriate place in the App store and provides some logic for prompting her to rate the app based on usage time and frequency.

Resources