-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add "BeFake" functionality: upload custom BeReals from camera roll, spoof location and the time the photo was taken - Stability improvements (random app crashes aren't caused by Bea. BeReal itself is aware of those crashes)
- Loading branch information
1 parent
89e7e07
commit e4162a6
Showing
18 changed files
with
1,270 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
.theos/ | ||
packages/ | ||
.DS_Store | ||
Versions/ | ||
Versions/ | ||
Utilities/errorCodes | ||
notes | ||
realmoji |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,30 @@ | ||
# Bea | ||
Bea adds small enhancements to the BeReal. app. | ||
|
||
## Installation | ||
1. Add https://havoc.app to your package manager. | ||
2. Install Bea | ||
Bea is an iOS tweak that adds enhancements to the BeReal. app. | ||
|
||
## Compatibility | ||
All iOS devices running iOS 14 or later. | ||
Compatible with all iOS devices running iOS 14 or later. | ||
|
||
## Features | ||
- View BeReals without posting your own | ||
- Upload BeReals from the camera roll: | ||
- Post on time, even if you're posting late | ||
- Set a custom location | ||
- Set a custom retake count | ||
- Download BeReals | ||
- Bypass screenshot detection | ||
|
||
## Build | ||
<table><tr><td> | ||
To build Bea for the purpose of injecting it into an IPA and installing it through sideloading, set the JAILED flag to true.</td></tr></table> | ||
|
||
- Clone this repository using `git clone https://github.com/yandevelop/Bea` | ||
- `cd Bea` | ||
- Run `make package` | ||
|
||
## Installation | ||
1. Add https://havoc.app to your package manager. | ||
2. Install Bea | ||
|
||
## License | ||
You may not copy, modify, sublicense or distribute the source code or any packages from it. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
#import "../Utilities/BeaUtilities.m" | ||
#import "../Utilities/UploadViewController/BeaUploadViewController.m" | ||
#import <rootless.h> | ||
|
||
BOOL isUnblurred = NO; | ||
BOOL isUnblurred = NO; | ||
|
||
NSString *authorizationKey = nil; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@interface BeaInfoViewController : UIViewController | ||
@property (nonatomic, strong) UIImageView *profileImageView; | ||
@property (nonatomic, strong) UILabel *twitterLabel; | ||
@property (nonatomic, strong) UILabel *smallLabel; | ||
@property (nonatomic, strong) UIView *wrapperView; | ||
@property (nonatomic, strong) UILabel *versionLabel; | ||
@end |
Oops, something went wrong.