Skip to content

Commit c6a5b65

Browse files
Initial commit
0 parents  commit c6a5b65

File tree

132 files changed

+17502
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+17502
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: DmitriiFeshchenko
7+
8+
---
9+
10+
## Step 0: Is this a new bug?
11+
12+
Make sure to check our
13+
[troubleshooting](https://docs.appodeal.com/faq-and-troubleshooting/troubleshooting/unity-common-issues/65k-reference-limit)
14+
and [issues](https://github.com/appodeal/cmp-unity-plugin/issues) pages before submitting your bug report.
15+
16+
*Please delete this section when posting a bug report.*
17+
18+
## Step 1: Environment
19+
20+
**[REQUIRED]**
21+
- Computer OS: [e.g. Windows, macOS]
22+
- Unity Editor Version: [e.g. 2021.3.1f1]
23+
- Appodeal Unity Plugin Version: [e.g. 3.0.1]
24+
- Bug Repro Rate: [e.g. 100%, 25%]
25+
26+
**[OPTIONAL]** *(if applicable)*
27+
- Xcode Version: [e.g. 13.3.1]
28+
- CocoaPods Version: [e.g. 1.11.3]
29+
- Device Model: [e.g. Pixel 6 Pro, iPhone 13]
30+
- Device OS Version: [e.g. Android 13, iOS 15.4.1]
31+
32+
## Step 2: Describe the bug
33+
A clear and concise description of what the bug is, including device logs, Unity Editor logs, and
34+
stack traces if available.
35+
36+
## Step 3: How to reproduce
37+
Describe here step by step how to reproduce this bug.
38+
[e.g. 1. Request Consent status. 2. Call `ConsentForm.Show();` method. 3. See error.]
39+
40+
## Step 4: Expected behavior
41+
A clear and concise description of what you expected to happen.
42+
43+
## Step 5: Screenshots
44+
If applicable, add screenshots to help explain your problem.
45+
46+
## Step 6: Additional context
47+
Add any other context about the problem here.
48+
49+
*If you have a downloadable sample project that reproduces the bug you're reporting, you will likely receive
50+
a faster response on your issue.*

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Appodeal CMP Unity Plugin Documentation
4+
url: https://docs.appodeal.com/unity/data-protection/gdpr-and-ccpa
5+
about: The place to get started with Appodeal CMP Unity Plugin.

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
[Ll]ibrary/
2+
[Tt]emp/
3+
[Oo]bj/
4+
[Bb]uild/
5+
[Bb]uilds/
6+
Assets/AssetStoreTools*
7+
8+
# Visual Studio cache directory
9+
.vs/
10+
11+
# Autogenerated VS/MD/Consulo solution and project files
12+
ExportedObj/
13+
.consulo/
14+
*.csproj
15+
*.unityproj
16+
*.sln
17+
*.suo
18+
*.tmp
19+
*.user
20+
*.userprefs
21+
*.pidb
22+
*.booproj
23+
*.svd
24+
*.pdb
25+
*.opendb
26+
*.VC.db
27+
28+
# Unity3D generated meta files
29+
*.pidb.meta
30+
*.pdb.meta
31+
*.mdb.meta
32+
33+
# Unity3D Generated File On Crash Reports
34+
sysinfo.txt
35+
36+
# Builds
37+
*.apk
38+
*.aab
39+
*.app
40+
41+
# Crashlytics generated file
42+
crashlytics-build.properties
43+
44+
#System files
45+
*.DS_Store

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Appodeal CMP Unity Plugin
2+
3+
## Changelog
4+
5+
### v2.0.0 (January 31, 2024)
6+
7+
+ Prepared package for UPM distribution
8+
+ Implemented necessary plugin tools
9+
+ Implemented plugin API
10+
+ Implemented Android bridge
11+
+ Implemented iOS bridge
12+
+ Created usage sample

CHANGELOG.md.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Documentation~/Index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Appodeal CMP Unity Plugin Documentation
2+
3+
There is no offline doc at the moment. The actual documentation can always be obtained on the
4+
[Appodeal website](https://docs.appodeal.com/unity/data-protection/gdpr-and-ccpa).

Editor.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "AppodealStack.Cmp.Editor",
3+
"rootNamespace": "AppodealStack.Cmp.Editor",
4+
"references": [],
5+
"includePlatforms": [
6+
"Editor"
7+
],
8+
"excludePlatforms": [],
9+
"allowUnsafeCode": false,
10+
"overrideReferences": false,
11+
"precompiledReferences": [],
12+
"autoReferenced": false,
13+
"defineConstraints": [],
14+
"versionDefines": [],
15+
"noEngineReferences": false
16+
}

Editor/AppodealStack.Cmp.Editor.asmdef.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)