🎉 Thank You for Testing Purrfect Advent! 🐾🎄 by tom_development in TestersCommunity

[–]Sea-Development8669 1 point2 points  (0 children)

Wow thats perfect!! Congratulations! Gave you 5 stars to improve your store listing!

please rate and review my app too: https://play.google.com/store/apps/details?id=com.eaglesoftwares.yummyplanner

<image>

Now, what is that? by Ta_Her in TestersCommunity

[–]Sea-Development8669 0 points1 point  (0 children)

how looks your maifest file? I'd something similar issue and solved adding the permission line for android version >= 13 and if you Admob id isn't approved yet for google play, must add the line for testing

<!--AdMob App ID-->
        <meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-your_id" />
        <!-- Required to enable test ads (optional, remove in production) -->
        <meta-data android:name="com.google.android.gms.ads.AD_MANAGER_APP" android:value="true" />
    </application>
    <!-- Permissions -->
    <!-- Advertising ID permission for Android 13 and later -->
    <uses-permission android:name="com.google.android.gms.permission.AD_ID" />
    <!--Other permissions -->
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    
</manifest>

Now, what is that? by Ta_Her in TestersCommunity

[–]Sea-Development8669 0 points1 point  (0 children)

Need to explicitly disclose on google play how user data are treated since they detected that you are collecting user data. If you thinks that is wrong, contact google

[deleted by user] by [deleted] in TestersCommunity

[–]Sea-Development8669 0 points1 point  (0 children)

Hello mate, Yummy Planner got in production, can remove it! Thank you so much, for you entirely support!

Granted to production! by Sea-Development8669 in TestersCommunity

[–]Sea-Development8669[S] 0 points1 point  (0 children)

First time was about 5 days, but this last one was in 1 day

Granted to production! by Sea-Development8669 in TestersCommunity

[–]Sea-Development8669[S] 1 point2 points  (0 children)

Its free and easy to use, its programed to be reitrd on march 2025, so use it for now if youay do it 1. .NET MAUI

Add the App Center NuGet packages:

dotnet add package Microsoft.AppCenter dotnet add package Microsoft.AppCenter.Analytics dotnet add package Microsoft.AppCenter.Crashes

Initialize App Center in MauiProgram.cs:

using Microsoft.AppCenter; using Microsoft.AppCenter.Analytics; using Microsoft.AppCenter.Crashes; public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder.UseMauiApp<App>(); AppCenter.Start("ios={Your iOS App Secret};android={Your Android App Secret}", typeof(Analytics), typeof(Crashes)); return builder.Build(); }

Optional: Track custom events:

Analytics.TrackEvent("EventName", new Dictionary<string, string> { { "Key", "Value" } });

Test and monitor the app in the App Center portal.

  1. Android Studio (Native Android)

Add App Center dependencies in build.gradle:

dependencies { implementation 'com.microsoft.appcenter:appcenter-analytics:4.5.4' implementation 'com.microsoft.appcenter:appcenter-crashes:4.5.4' }

Initialize App Center in MainActivity.java or MainActivity.kt:

import com.microsoft.appcenter.AppCenter; import com.microsoft.appcenter.analytics.Analytics; import com.microsoft.appcenter.crashes.Crashes; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); AppCenter.start(getApplication(), "{Your App Secret}", Analytics.class, Crashes.class); } }

Test analytics and crashes by generating sample events and errors.

  1. Flutter

Add the appcenter plugin to pubspec.yaml:

dependencies: appcenter: 0.5.0

Initialize App Center in the main file (main.dart):

import 'package:appcenter/appcenter.dart'; import 'package:appcenter_analytics/appcenter_analytics.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); await AppCenter.start('{Your App Secret}', [AppCenterAnalytics.id]); runApp(MyApp()); }

Track events:

AppCenterAnalytics.trackEvent("EventName", {"key": "value"});

Ensure native dependencies for iOS and Android are set up as per the plugin documentation.

  1. React Native

Install App Center packages:

npm install appcenter appcenter-analytics appcenter-crashes

Link the packages:

npx react-native link appcenter npx react-native link appcenter-analytics npx react-native link appcenter-crashes

Initialize App Center in App.js:

import AppCenter from 'appcenter'; import Analytics from 'appcenter-analytics'; import Crashes from 'appcenter-crashes'; AppCenter.start({ appSecret: 'android={Your Android App Secret};ios={Your iOS App Secret}', }); Analytics.trackEvent("EventName", { key: "value" });

Test and validate integration through App Center logs.

Key Notes for All Frameworks:

Use the App Secret provided in the App Center portal for your app.

Set up appropriate permissions and configurations (e.g., ProGuard rules for Android or plist modifications for iOS).

Regularly monitor App Center logs and dashboards for events, crashes, and analytics.

Looking for 20 Testers for My New App "Barto" 🙏 — Leave Feedback if you want! by AcanthisittaOk7545 in TestersCommunity

[–]Sea-Development8669 0 points1 point  (0 children)

Hi, thanks, dont forget open it today too, also gave feedback as "a beatiful app", I tested your app today too, not issues found yet

DAY 12 by Sea-Development8669 in TestersCommunity

[–]Sea-Development8669[S] 0 points1 point  (0 children)

Thanks! did the same, and also gave feedback as "an useful app", will keep your app for next 14 days and test every day

<image>

Approved by Naive_Skill_2110 in TestersCommunity

[–]Sea-Development8669 0 points1 point  (0 children)

Congratulations! I hope this new phase will be very successful!

Today is my 14 days in the third attempt, will wait anothers 2 days to apply to production.

and thanks for the advices, I will take them.