Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Locokit | 1,461 | 3 | 2 months ago | 41 | October 22, 2018 | 30 | lgpl-3.0 | Swift | ||
Location, motion, and activity recording framework for iOS | ||||||||||
Dash | 199 | 21 days ago | 8 | apache-2.0 | Kotlin | |||||
This is an Android Spyware App, Which uploads user data such as Contacts, Messages, Call log & recordings, Send messages, Photos, Videos, etc. | ||||||||||
Tracking Map On Android | 73 | 11 years ago | 1 | Java | ||||||
Periodically tracking and recording user's location in the background | ||||||||||
Ios Uitouch Bluedots | 48 | 8 years ago | Objective-C | |||||||
Simple code to add blue dots for every UITouch in an app - Helpful for recording app demos that show touch locations during use. | ||||||||||
Locatorz | 30 | 4 years ago | mit | Dart | ||||||
An Android App, which lets you work on Location Data, built with :heart: using Flutter | ||||||||||
Reminderpro | 27 | a year ago | 9 | apache-2.0 | Kotlin | |||||
ReminderPro(location, note, voice recording) | ||||||||||
Eyetv Export Scripts | 15 | 8 years ago | AppleScript | |||||||
Scripts to help with EyeTV | ||||||||||
Jogjournal | 11 | 9 years ago | mit | Objective-C | ||||||
An iOS demo app for recording jog data | ||||||||||
Cyclo | 6 | 9 years ago | 5 | Java | ||||||
Cyclo Location Recording Service | ||||||||||
Pugmarks Socionity | 3 | 9 years ago | Java | |||||||
Pugmarks is a tool which can be used to record Location tracks and routes on a map interactively along with Photos, Videos, Audio clippings and Messages mapped to locations. The tool is aimed to help crowdsource local resources, tracks and folklore along routes. |
This repro provides simple code to add blue dots on the screen for every UITouch. This makes it easy to record touch locations for app demo videos.
To add blue dots to your project, just create a MMTouchDotView and add it to the UIWindow when your application launches. That's it!
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// create the blue dot view
MMTouchDotView* blueDots = [[MMTouchDotView alloc] initWithFrame:self.window.bounds];
// optionally set the dot color, defaults to blue
// blueDots.dotColor = [UIColor redColor];
// optionally set the dot width, defaults to 20
// blueDots.dotWidth = 40;
// add the view to the window to make sure it's always visible
[self.window addSubview:blueDots];
// Override point for customization after application launch.
return YES;
}