├── .gitignore ├── GMUtilsAndroid ├── .DS_Store ├── GMUtils │ ├── .gitignore │ ├── GMUtils │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── consumer-rules.pro │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── gmutils │ │ │ │ ├── ExampleInstrumentedTest.java │ │ │ │ ├── IntentsTest.java │ │ │ │ ├── database │ │ │ │ └── BaseDatabaseTest.java │ │ │ │ ├── security │ │ │ │ └── CryptographicUtilTest.java │ │ │ │ └── storage │ │ │ │ └── GeneralStorageTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── gmutils │ │ │ │ │ ├── Activities.java │ │ │ │ │ ├── Animations.java │ │ │ │ │ ├── AssetsReader.java │ │ │ │ │ ├── AudioVolumeController.java │ │ │ │ │ ├── Calculator.java │ │ │ │ │ ├── ContextWrapper.java │ │ │ │ │ ├── DateOp.java │ │ │ │ │ ├── Intents.java │ │ │ │ │ ├── KeypadOp.java │ │ │ │ │ ├── MessagingCenter.java │ │ │ │ │ ├── Notifier.java │ │ │ │ │ ├── StringSet.java │ │ │ │ │ ├── app │ │ │ │ │ └── BaseApplication.java │ │ │ │ │ ├── backgroundWorkers │ │ │ │ │ ├── BackgroundTask.java │ │ │ │ │ ├── BackgroundTaskAbs.java │ │ │ │ │ └── LooperThread.java │ │ │ │ │ ├── collections │ │ │ │ │ ├── ListWrapper.java │ │ │ │ │ ├── MapWrapper.java │ │ │ │ │ ├── ObservableList.kt │ │ │ │ │ ├── SetWrapper.java │ │ │ │ │ └── dataGroup │ │ │ │ │ │ ├── DataGroup1.java │ │ │ │ │ │ ├── DataGroup2.java │ │ │ │ │ │ ├── DataGroup3.java │ │ │ │ │ │ ├── DataGroup4.java │ │ │ │ │ │ └── DataGroup5.java │ │ │ │ │ ├── dataManipulation │ │ │ │ │ ├── CommentsDetector.java │ │ │ │ │ └── Ranker.java │ │ │ │ │ ├── dataStructure │ │ │ │ │ └── RingQueue.java │ │ │ │ │ ├── database │ │ │ │ │ ├── BaseDatabase.java │ │ │ │ │ ├── annotations │ │ │ │ │ │ ├── AutoIncrement.java │ │ │ │ │ │ ├── Default.java │ │ │ │ │ │ ├── Entity.java │ │ │ │ │ │ ├── Ignore.java │ │ │ │ │ │ ├── Not_Null.java │ │ │ │ │ │ ├── PrimaryKey.java │ │ │ │ │ │ └── Unique.java │ │ │ │ │ └── sqlitecommands │ │ │ │ │ │ ├── CreateTable.java │ │ │ │ │ │ ├── DropTable.java │ │ │ │ │ │ ├── ICommand.java │ │ │ │ │ │ ├── SQLKeyword.java │ │ │ │ │ │ └── WhereClause.java │ │ │ │ │ ├── firebase │ │ │ │ │ ├── FirebaseUtils.java │ │ │ │ │ ├── Response.java │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── FirebaseAuthManager.java │ │ │ │ │ │ ├── IFirebaseAuthManager.java │ │ │ │ │ │ └── w2 │ │ │ │ │ │ │ └── FirebaseAuth.java │ │ │ │ │ ├── configs │ │ │ │ │ │ ├── FBConfigSet.java │ │ │ │ │ │ └── FirebaseConfigs.java │ │ │ │ │ ├── database │ │ │ │ │ │ ├── FBFilterOption.java │ │ │ │ │ │ ├── FBFilterTypes.java │ │ │ │ │ │ ├── FirebaseDatabaseOp.java │ │ │ │ │ │ ├── IFirebaseDatabaseOp.java │ │ │ │ │ │ └── w2 │ │ │ │ │ │ │ └── FirebaseDbCollection.java │ │ │ │ │ ├── fcm │ │ │ │ │ │ ├── FCM.java │ │ │ │ │ │ ├── FCMFunctions.java │ │ │ │ │ │ ├── FcmMessageHandler.java │ │ │ │ │ │ ├── FcmNotificationProperties.java │ │ │ │ │ │ ├── GmFirebaseMessagingService.java │ │ │ │ │ │ └── SendFcmMessageParameters.java │ │ │ │ │ └── storage │ │ │ │ │ │ ├── FirebaseStorage.java │ │ │ │ │ │ └── IFirebaseStorage.java │ │ │ │ │ ├── geography │ │ │ │ │ ├── CountryPhoneCodes.java │ │ │ │ │ ├── LocationTracker.java │ │ │ │ │ └── MapController.java │ │ │ │ │ ├── images │ │ │ │ │ └── ImageLoader.java │ │ │ │ │ ├── inputFilters │ │ │ │ │ ├── DecimalRangeFilter.java │ │ │ │ │ └── IntegerRangeFilter.java │ │ │ │ │ ├── json │ │ │ │ │ ├── JsonBuilder.java │ │ │ │ │ └── JsonReader.java │ │ │ │ │ ├── listeners │ │ │ │ │ ├── ActionCallback.java │ │ │ │ │ ├── ActionCallback0.java │ │ │ │ │ ├── ActionCallback2.java │ │ │ │ │ ├── ActionCallback3.java │ │ │ │ │ ├── ActionCallback4.java │ │ │ │ │ ├── ActivityLifecycleCallbacks.java │ │ │ │ │ ├── AnimatorListener.java │ │ │ │ │ ├── RecyclerViewPaginationListener.java │ │ │ │ │ ├── ResultCallback.java │ │ │ │ │ ├── ResultCallback2.java │ │ │ │ │ ├── ResultCallback3.java │ │ │ │ │ ├── ResultCallback4.java │ │ │ │ │ ├── ResultCallback5.java │ │ │ │ │ ├── Runnable2.java │ │ │ │ │ ├── SearchTextChangeListener.java │ │ │ │ │ ├── SimpleWindowAttachListener.java │ │ │ │ │ ├── TextChangedListener.java │ │ │ │ │ └── ValueGetter.java │ │ │ │ │ ├── logger │ │ │ │ │ ├── Logger.java │ │ │ │ │ └── LoggerAbs.java │ │ │ │ │ ├── net │ │ │ │ │ ├── ConnectionService.java │ │ │ │ │ ├── SimpleHTTPRequest.java │ │ │ │ │ ├── retrofit │ │ │ │ │ │ ├── RetrofitService.java │ │ │ │ │ │ ├── StringResponseConverterFactory.java │ │ │ │ │ │ ├── callback │ │ │ │ │ │ │ ├── Callback.java │ │ │ │ │ │ │ ├── Callback2.java │ │ │ │ │ │ │ ├── Callback2o.java │ │ │ │ │ │ │ ├── CallbackErrorHandler.java │ │ │ │ │ │ │ ├── CallbackOperations.java │ │ │ │ │ │ │ └── LogsOptions.java │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── apiServices │ │ │ │ │ │ │ │ ├── FileDownloadRequest.java │ │ │ │ │ │ │ │ ├── ImageRequest.java │ │ │ │ │ │ │ │ └── TimeAPIsRequests.java │ │ │ │ │ │ │ ├── callers │ │ │ │ │ │ │ │ ├── _interfaces │ │ │ │ │ │ │ │ │ ├── FileAPIs.java │ │ │ │ │ │ │ │ │ ├── ImageAPIs.java │ │ │ │ │ │ │ │ │ └── TimeAPIs.java │ │ │ │ │ │ │ │ └── production │ │ │ │ │ │ │ │ │ ├── FileAPIs.java │ │ │ │ │ │ │ │ │ ├── ImageAPI.java │ │ │ │ │ │ │ │ │ └── TimeAPIs.java │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── ImageResponse.java │ │ │ │ │ │ │ │ ├── TimeOfArea.java │ │ │ │ │ │ │ │ └── TimeZones.java │ │ │ │ │ │ ├── listeners │ │ │ │ │ │ │ ├── OnResponseReady.java │ │ │ │ │ │ │ ├── OnResponseReady2.java │ │ │ │ │ │ │ └── OnResponseReady2o.java │ │ │ │ │ │ └── responseHolders │ │ │ │ │ │ │ ├── BaseListResponse.java │ │ │ │ │ │ │ ├── BaseObjectResponse.java │ │ │ │ │ │ │ ├── BaseResponse.java │ │ │ │ │ │ │ ├── IResponse.java │ │ │ │ │ │ │ └── StringResponse.java │ │ │ │ │ └── volley │ │ │ │ │ │ ├── ApiManager.java │ │ │ │ │ │ ├── ApiRequestCreator.java │ │ │ │ │ │ ├── ApiURL.java │ │ │ │ │ │ ├── TLSSocketFactory.java │ │ │ │ │ │ ├── VolleyMultipartRequest.java │ │ │ │ │ │ ├── example │ │ │ │ │ │ ├── APIs │ │ │ │ │ │ │ ├── CountriesAPIs.java │ │ │ │ │ │ │ ├── TimeAPIs.java │ │ │ │ │ │ │ └── UploadImageAPIs.java │ │ │ │ │ │ └── URLs │ │ │ │ │ │ │ ├── CountriesURLs.java │ │ │ │ │ │ │ ├── TimeURLs.java │ │ │ │ │ │ │ └── UploadImageURL.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── OnDataFetchedListener.java │ │ │ │ │ │ └── Result.java │ │ │ │ │ ├── security │ │ │ │ │ ├── BiometricAuthentication.java │ │ │ │ │ ├── CryptographicUtil.kt │ │ │ │ │ ├── DeviceIdentifier.java │ │ │ │ │ ├── EncryptionHelper.java │ │ │ │ │ ├── Security.java │ │ │ │ │ ├── TOTPGenerator.kt │ │ │ │ │ └── ValidationChecker.java │ │ │ │ │ ├── storage │ │ │ │ │ ├── AccountStorage.java │ │ │ │ │ ├── GeneralStorage.java │ │ │ │ │ ├── SettingsStorage.java │ │ │ │ │ └── StorageManager.java │ │ │ │ │ ├── ui │ │ │ │ │ ├── activities │ │ │ │ │ │ ├── ActivityFunctions.java │ │ │ │ │ │ ├── BaseActivity.java │ │ │ │ │ │ └── BaseLegacyActivity.java │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── BaseListAdapter.java │ │ │ │ │ │ ├── BaseRecyclerAdapter.java │ │ │ │ │ │ ├── BaseRecyclerAdapter0.java │ │ │ │ │ │ ├── BaseRecyclerAdapterViewHolder.java │ │ │ │ │ │ └── MultiListAdapter.java │ │ │ │ │ ├── customViews │ │ │ │ │ │ ├── ColorPicker.kt │ │ │ │ │ │ └── ImageSlider.java │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── BaseDialog.java │ │ │ │ │ │ ├── CountryCodeDialog.java │ │ │ │ │ │ ├── InputDialog.java │ │ │ │ │ │ ├── ListDialog.java │ │ │ │ │ │ ├── MessageDialog.java │ │ │ │ │ │ ├── MessageDialogFunctions.java │ │ │ │ │ │ ├── MessageDialogNative.java │ │ │ │ │ │ ├── OptionsDialog.java │ │ │ │ │ │ ├── RetryPromptDialog.java │ │ │ │ │ │ └── WaitDialog.java │ │ │ │ │ ├── fragments │ │ │ │ │ │ ├── BaseFragment.java │ │ │ │ │ │ ├── BaseFragmentListener.java │ │ │ │ │ │ ├── BaseFragmentListenerX.java │ │ │ │ │ │ ├── BaseLegacyFragment.java │ │ │ │ │ │ └── ShowFragmentOptions.java │ │ │ │ │ ├── toast │ │ │ │ │ │ ├── MyToast.java │ │ │ │ │ │ ├── ToastCustom.java │ │ │ │ │ │ └── ToastNative.java │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── BaseViewModelObserversHandlers.java │ │ │ │ │ │ ├── DumbViewBinding.java │ │ │ │ │ │ ├── ViewSource.kt │ │ │ │ │ │ └── uihandler │ │ │ │ │ │ │ ├── UiHandler.java │ │ │ │ │ │ │ └── UiHandlerAbs.java │ │ │ │ │ └── viewModels │ │ │ │ │ │ └── BaseViewModel.java │ │ │ │ │ ├── utils │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── ImageUtils.java │ │ │ │ │ ├── ListViewUtils.java │ │ │ │ │ ├── TextHelper.java │ │ │ │ │ ├── UIUtils.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ └── ZipFileUtils.java │ │ │ │ │ └── widgets │ │ │ │ │ └── ShapeView.kt │ │ │ └── res │ │ │ │ ├── anim │ │ │ │ ├── grow_from_topleft_to_bottomright.xml │ │ │ │ ├── slide_down.xml │ │ │ │ ├── slide_left_in.xml │ │ │ │ ├── slide_left_out.xml │ │ │ │ ├── slide_right_in.xml │ │ │ │ ├── slide_right_out.xml │ │ │ │ └── slide_up.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── dismiss.png │ │ │ │ └── search.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── dismiss.png │ │ │ │ ├── flag_aa.png │ │ │ │ ├── flag_ad.png │ │ │ │ ├── flag_ae.png │ │ │ │ ├── flag_af.png │ │ │ │ ├── flag_ag.png │ │ │ │ ├── flag_ai.png │ │ │ │ ├── flag_al.png │ │ │ │ ├── flag_am.png │ │ │ │ ├── flag_ao.png │ │ │ │ ├── flag_aq.png │ │ │ │ ├── flag_ar.png │ │ │ │ ├── flag_as.png │ │ │ │ ├── flag_at.png │ │ │ │ ├── flag_au.png │ │ │ │ ├── flag_aw.png │ │ │ │ ├── flag_ax.png │ │ │ │ ├── flag_az.png │ │ │ │ ├── flag_ba.png │ │ │ │ ├── flag_bb.png │ │ │ │ ├── flag_bd.png │ │ │ │ ├── flag_be.png │ │ │ │ ├── flag_bf.png │ │ │ │ ├── flag_bg.png │ │ │ │ ├── flag_bh.png │ │ │ │ ├── flag_bi.png │ │ │ │ ├── flag_bj.png │ │ │ │ ├── flag_bl.png │ │ │ │ ├── flag_bm.png │ │ │ │ ├── flag_bn.png │ │ │ │ ├── flag_bo.png │ │ │ │ ├── flag_bq.png │ │ │ │ ├── flag_br.png │ │ │ │ ├── flag_bs.png │ │ │ │ ├── flag_bt.png │ │ │ │ ├── flag_bv.png │ │ │ │ ├── flag_bw.png │ │ │ │ ├── flag_by.png │ │ │ │ ├── flag_bz.png │ │ │ │ ├── flag_ca.png │ │ │ │ ├── flag_cc.png │ │ │ │ ├── flag_cd.png │ │ │ │ ├── flag_cf.png │ │ │ │ ├── flag_cg.png │ │ │ │ ├── flag_ch.png │ │ │ │ ├── flag_ci.png │ │ │ │ ├── flag_ck.png │ │ │ │ ├── flag_cl.png │ │ │ │ ├── flag_cm.png │ │ │ │ ├── flag_cn.png │ │ │ │ ├── flag_co.png │ │ │ │ ├── flag_cr.png │ │ │ │ ├── flag_cu.png │ │ │ │ ├── flag_cv.png │ │ │ │ ├── flag_cw.png │ │ │ │ ├── flag_cx.png │ │ │ │ ├── flag_cy.png │ │ │ │ ├── flag_cz.png │ │ │ │ ├── flag_de.png │ │ │ │ ├── flag_dj.png │ │ │ │ ├── flag_dk.png │ │ │ │ ├── flag_dm.png │ │ │ │ ├── flag_do.png │ │ │ │ ├── flag_dz.png │ │ │ │ ├── flag_ec.png │ │ │ │ ├── flag_ee.png │ │ │ │ ├── flag_eg.png │ │ │ │ ├── flag_eh.png │ │ │ │ ├── flag_er.png │ │ │ │ ├── flag_es.png │ │ │ │ ├── flag_et.png │ │ │ │ ├── flag_fi.png │ │ │ │ ├── flag_fj.png │ │ │ │ ├── flag_fk.png │ │ │ │ ├── flag_fm.png │ │ │ │ ├── flag_fo.png │ │ │ │ ├── flag_fr.png │ │ │ │ ├── flag_ga.png │ │ │ │ ├── flag_gb.png │ │ │ │ ├── flag_gd.png │ │ │ │ ├── flag_ge.png │ │ │ │ ├── flag_gf.png │ │ │ │ ├── flag_gg.png │ │ │ │ ├── flag_gh.png │ │ │ │ ├── flag_gi.png │ │ │ │ ├── flag_gl.png │ │ │ │ ├── flag_gm.png │ │ │ │ ├── flag_gn.png │ │ │ │ ├── flag_gp.png │ │ │ │ ├── flag_gq.png │ │ │ │ ├── flag_gr.png │ │ │ │ ├── flag_gs.png │ │ │ │ ├── flag_gt.png │ │ │ │ ├── flag_gu.png │ │ │ │ ├── flag_gw.png │ │ │ │ ├── flag_gy.png │ │ │ │ ├── flag_hk.png │ │ │ │ ├── flag_hm.png │ │ │ │ ├── flag_hn.png │ │ │ │ ├── flag_hr.png │ │ │ │ ├── flag_ht.png │ │ │ │ ├── flag_hu.png │ │ │ │ ├── flag_id.png │ │ │ │ ├── flag_ie.png │ │ │ │ ├── flag_il.png │ │ │ │ ├── flag_im.png │ │ │ │ ├── flag_in.png │ │ │ │ ├── flag_io.png │ │ │ │ ├── flag_iq.png │ │ │ │ ├── flag_ir.png │ │ │ │ ├── flag_is.png │ │ │ │ ├── flag_it.png │ │ │ │ ├── flag_je.png │ │ │ │ ├── flag_jm.png │ │ │ │ ├── flag_jo.png │ │ │ │ ├── flag_jp.png │ │ │ │ ├── flag_ke.png │ │ │ │ ├── flag_kg.png │ │ │ │ ├── flag_kh.png │ │ │ │ ├── flag_ki.png │ │ │ │ ├── flag_km.png │ │ │ │ ├── flag_kn.png │ │ │ │ ├── flag_kp.png │ │ │ │ ├── flag_kr.png │ │ │ │ ├── flag_kw.png │ │ │ │ ├── flag_ky.png │ │ │ │ ├── flag_kz.png │ │ │ │ ├── flag_la.png │ │ │ │ ├── flag_lb.png │ │ │ │ ├── flag_lc.png │ │ │ │ ├── flag_li.png │ │ │ │ ├── flag_lk.png │ │ │ │ ├── flag_lr.png │ │ │ │ ├── flag_ls.png │ │ │ │ ├── flag_lt.png │ │ │ │ ├── flag_lu.png │ │ │ │ ├── flag_lv.png │ │ │ │ ├── flag_ly.png │ │ │ │ ├── flag_ma.png │ │ │ │ ├── flag_mc.png │ │ │ │ ├── flag_md.png │ │ │ │ ├── flag_me.png │ │ │ │ ├── flag_mf.png │ │ │ │ ├── flag_mg.png │ │ │ │ ├── flag_mh.png │ │ │ │ ├── flag_mk.png │ │ │ │ ├── flag_ml.png │ │ │ │ ├── flag_mm.png │ │ │ │ ├── flag_mn.png │ │ │ │ ├── flag_mo.png │ │ │ │ ├── flag_mp.png │ │ │ │ ├── flag_mq.png │ │ │ │ ├── flag_mr.png │ │ │ │ ├── flag_ms.png │ │ │ │ ├── flag_mt.png │ │ │ │ ├── flag_mu.png │ │ │ │ ├── flag_mv.png │ │ │ │ ├── flag_mw.png │ │ │ │ ├── flag_mx.png │ │ │ │ ├── flag_my.png │ │ │ │ ├── flag_mz.png │ │ │ │ ├── flag_na.png │ │ │ │ ├── flag_nc.png │ │ │ │ ├── flag_ne.png │ │ │ │ ├── flag_nf.png │ │ │ │ ├── flag_ng.png │ │ │ │ ├── flag_ni.png │ │ │ │ ├── flag_nl.png │ │ │ │ ├── flag_no.png │ │ │ │ ├── flag_np.png │ │ │ │ ├── flag_nr.png │ │ │ │ ├── flag_nu.png │ │ │ │ ├── flag_nz.png │ │ │ │ ├── flag_om.png │ │ │ │ ├── flag_pa.png │ │ │ │ ├── flag_pe.png │ │ │ │ ├── flag_pf.png │ │ │ │ ├── flag_pg.png │ │ │ │ ├── flag_ph.png │ │ │ │ ├── flag_pk.png │ │ │ │ ├── flag_pl.png │ │ │ │ ├── flag_pm.png │ │ │ │ ├── flag_pn.png │ │ │ │ ├── flag_pr.png │ │ │ │ ├── flag_ps.png │ │ │ │ ├── flag_pt.png │ │ │ │ ├── flag_pw.png │ │ │ │ ├── flag_py.png │ │ │ │ ├── flag_qa.png │ │ │ │ ├── flag_re.png │ │ │ │ ├── flag_ro.png │ │ │ │ ├── flag_rs.png │ │ │ │ ├── flag_ru.png │ │ │ │ ├── flag_rw.png │ │ │ │ ├── flag_sa.png │ │ │ │ ├── flag_sb.png │ │ │ │ ├── flag_sc.png │ │ │ │ ├── flag_sd.png │ │ │ │ ├── flag_se.png │ │ │ │ ├── flag_sg.png │ │ │ │ ├── flag_sh.png │ │ │ │ ├── flag_si.png │ │ │ │ ├── flag_sj.png │ │ │ │ ├── flag_sk.png │ │ │ │ ├── flag_sl.png │ │ │ │ ├── flag_sm.png │ │ │ │ ├── flag_sn.png │ │ │ │ ├── flag_so.png │ │ │ │ ├── flag_sr.png │ │ │ │ ├── flag_ss.png │ │ │ │ ├── flag_st.png │ │ │ │ ├── flag_sv.png │ │ │ │ ├── flag_sx.png │ │ │ │ ├── flag_sy.png │ │ │ │ ├── flag_sz.png │ │ │ │ ├── flag_tc.png │ │ │ │ ├── flag_td.png │ │ │ │ ├── flag_tf.png │ │ │ │ ├── flag_tg.png │ │ │ │ ├── flag_th.png │ │ │ │ ├── flag_tj.png │ │ │ │ ├── flag_tk.png │ │ │ │ ├── flag_tl.png │ │ │ │ ├── flag_tm.png │ │ │ │ ├── flag_tn.png │ │ │ │ ├── flag_to.png │ │ │ │ ├── flag_tr.png │ │ │ │ ├── flag_tt.png │ │ │ │ ├── flag_tv.png │ │ │ │ ├── flag_tw.png │ │ │ │ ├── flag_tz.png │ │ │ │ ├── flag_ua.png │ │ │ │ ├── flag_ug.png │ │ │ │ ├── flag_um.png │ │ │ │ ├── flag_us.png │ │ │ │ ├── flag_uy.png │ │ │ │ ├── flag_uz.png │ │ │ │ ├── flag_va.png │ │ │ │ ├── flag_vc.png │ │ │ │ ├── flag_ve.png │ │ │ │ ├── flag_vg.png │ │ │ │ ├── flag_vi.png │ │ │ │ ├── flag_vn.png │ │ │ │ ├── flag_vu.png │ │ │ │ ├── flag_wf.png │ │ │ │ ├── flag_ws.png │ │ │ │ ├── flag_ye.png │ │ │ │ ├── flag_yt.png │ │ │ │ ├── flag_za.png │ │ │ │ ├── flag_zm.png │ │ │ │ ├── flag_zw.png │ │ │ │ ├── flag_zz.png │ │ │ │ └── search.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── dismiss.png │ │ │ │ └── search.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── dismiss.png │ │ │ │ └── search.png │ │ │ │ ├── drawable │ │ │ │ ├── arrow_down.xml │ │ │ │ ├── button_solid_green.xml │ │ │ │ ├── button_solid_red.xml │ │ │ │ ├── dialog_background.xml │ │ │ │ ├── frame_circle_color_accent.xml │ │ │ │ ├── frame_circle_gray.xml │ │ │ │ ├── frame_circle_red.xml │ │ │ │ ├── person.png │ │ │ │ ├── shape_edittext_background_with_accent_frame.xml │ │ │ │ ├── shape_edittext_background_with_gray_frame.xml │ │ │ │ ├── shape_edittext_background_with_primary_frame.xml │ │ │ │ ├── shape_edittext_background_with_primarydark_frame.xml │ │ │ │ ├── shape_edittext_background_with_red_frame.xml │ │ │ │ ├── shape_frame_round_black.xml │ │ │ │ ├── shape_frame_round_color_accent.xml │ │ │ │ ├── shape_frame_round_darkprimary.xml │ │ │ │ ├── shape_frame_round_edittext_textcolor.xml │ │ │ │ ├── shape_frame_round_gray.xml │ │ │ │ ├── shape_frame_round_green.xml │ │ │ │ ├── shape_frame_round_primary.xml │ │ │ │ ├── shape_frame_round_primary2.xml │ │ │ │ ├── shape_frame_round_red.xml │ │ │ │ ├── shape_frame_round_white.xml │ │ │ │ ├── shape_solid_circle_accent.xml │ │ │ │ ├── shape_solid_circle_default_to_accent_button.xml │ │ │ │ ├── shape_solid_circle_green.xml │ │ │ │ ├── shape_solid_circle_orange.xml │ │ │ │ ├── shape_solid_circle_primary.xml │ │ │ │ ├── shape_solid_gradient_circle_white.xml │ │ │ │ ├── shape_solid_gradient_primary_to_white.xml │ │ │ │ ├── shape_solid_gradient_white_primarydark.xml │ │ │ │ ├── shape_solid_gray_with_black_frame.xml │ │ │ │ ├── shape_solid_rectagle_default_to_accent_button.xml │ │ │ │ ├── shape_solid_rectangle_accent.xml │ │ │ │ ├── shape_solid_rectangle_primary.xml │ │ │ │ ├── shape_solid_rectangle_primarydark.xml │ │ │ │ ├── shape_solid_round_accent.xml │ │ │ │ ├── shape_solid_round_black.xml │ │ │ │ ├── shape_solid_round_button_active.xml │ │ │ │ ├── shape_solid_round_button_dark.xml │ │ │ │ ├── shape_solid_round_button_destructive.xml │ │ │ │ ├── shape_solid_round_button_link.xml │ │ │ │ ├── shape_solid_round_gradient_white.xml │ │ │ │ ├── shape_solid_round_gradient_white_primarydark.xml │ │ │ │ ├── shape_solid_round_gray_trans.xml │ │ │ │ ├── shape_solid_round_gray_trans2.xml │ │ │ │ ├── shape_solid_round_gray_with_black_frame.xml │ │ │ │ ├── shape_solid_round_green.xml │ │ │ │ ├── shape_solid_round_green2.xml │ │ │ │ ├── shape_solid_round_lightgray_with_shaddow.xml │ │ │ │ ├── shape_solid_round_lightgreen.xml │ │ │ │ ├── shape_solid_round_primary.xml │ │ │ │ ├── shape_solid_round_primarydark.xml │ │ │ │ ├── shape_solid_round_red.xml │ │ │ │ ├── shape_solid_round_red2.xml │ │ │ │ ├── shape_solid_round_trans_black.xml │ │ │ │ ├── shape_solid_round_white.xml │ │ │ │ ├── shape_solid_round_white_shaddow.xml │ │ │ │ ├── shape_solid_round_white_shaddow2.xml │ │ │ │ ├── shape_solid_round_white_with_black_frame.xml │ │ │ │ ├── shape_solid_round_white_with_gray_frame.xml │ │ │ │ ├── shape_solid_round_white_with_green_frame.xml │ │ │ │ ├── shape_solid_round_white_with_primary_frame.xml │ │ │ │ ├── shape_solid_round_white_with_primarydark_frame.xml │ │ │ │ ├── shape_solid_round_white_with_primarydark_frame2.xml │ │ │ │ ├── shape_solid_round_white_with_red_frame.xml │ │ │ │ ├── shape_solid_rounded_top_corner_accent_color.xml │ │ │ │ ├── shape_solid_semi_round_black.xml │ │ │ │ ├── shape_solid_semi_round_black_bottom.xml │ │ │ │ ├── shape_solid_semi_round_gray_trans.xml │ │ │ │ ├── shape_solid_semi_round_gray_trans_right.xml │ │ │ │ ├── shape_solid_semi_round_white_shaddow.xml │ │ │ │ ├── shape_solid_single_round_top_left_white_color.xml │ │ │ │ ├── shape_solid_single_round_top_right_white_color.xml │ │ │ │ ├── solid_circle_color_accent.xml │ │ │ │ └── toast_frame.xml │ │ │ │ ├── layout │ │ │ │ ├── adapter_colors.xml │ │ │ │ ├── adapter_colors2.xml │ │ │ │ ├── adapter_country_codes.xml │ │ │ │ ├── adapter_single_color.xml │ │ │ │ ├── color_picker.xml │ │ │ │ ├── dialog_country_code.xml │ │ │ │ ├── dialog_input_element_gm4s.xml │ │ │ │ ├── dialog_input_gm4s.xml │ │ │ │ ├── dialog_list_gm4s.xml │ │ │ │ ├── dialog_message_gm4s.xml │ │ │ │ ├── dialog_wait_hor.xml │ │ │ │ ├── dialog_wait_ver.xml │ │ │ │ ├── list_dialog_adapter_simple_text.xml │ │ │ │ └── mytoast_gmutils.xml │ │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ │ ├── values-night │ │ │ │ └── colors.xml │ │ │ │ ├── values-sw600dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-sw800dp │ │ │ │ └── dimens.xml │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── ids.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── file_paths.xml │ │ │ └── test │ │ │ └── java │ │ │ └── gmutils │ │ │ ├── ExampleUnitTest.java │ │ │ ├── LoggerTest.java │ │ │ ├── StringSetTest.java │ │ │ └── collections │ │ │ └── ObservableListTest.kt │ ├── GMUtils_Example │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── ks │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── blogspot │ │ │ │ └── gm4s │ │ │ │ └── gmutileexample │ │ │ │ ├── DatabaseExample.kt │ │ │ │ ├── ListAndMapWrappersExample.java │ │ │ │ ├── RecyclerViewAdapterExample.java │ │ │ │ ├── TOTPGeneratorExample.kt │ │ │ │ ├── activities │ │ │ │ ├── ActivityWithViewModelExampleActivity.kt │ │ │ │ ├── ActivityWithViewModelExampleViewModel.kt │ │ │ │ ├── ColorPicker2Activity.kt │ │ │ │ ├── ColorPickerActivity.kt │ │ │ │ ├── FirebaseTestActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MapAndLocationExample.kt │ │ │ │ └── ReadLogFileActivity.kt │ │ │ │ ├── app │ │ │ │ ├── AndroidApplicationWithBaseApplication.kt │ │ │ │ └── BaseApplicationExample.kt │ │ │ │ └── customViewExamples │ │ │ │ ├── TextBoxWithTitle_ImplActivity.java │ │ │ │ ├── TextBoxWithTitle_Way1.java │ │ │ │ └── TextBoxWithTitle_Way2.java │ │ │ └── res │ │ │ ├── drawable-anydpi │ │ │ └── dropdown_arrow.xml │ │ │ ├── drawable-hdpi │ │ │ └── dropdown_arrow.png │ │ │ ├── drawable-mdpi │ │ │ └── dropdown_arrow.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ └── dropdown_arrow.png │ │ │ ├── drawable-xxhdpi │ │ │ └── dropdown_arrow.png │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_color_picker.xml │ │ │ ├── activity_color_picker2.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_map_and_location.xml │ │ │ ├── activity_read_log_file.xml │ │ │ ├── activity_textbox_with_title_impl.xml │ │ │ ├── adapter_color_picker_item.xml │ │ │ └── custom_view_textbox_with_title.xml │ │ │ ├── menu │ │ │ └── menu_scrolling.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── backup_descriptor.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── GMUtilsSupport │ ├── .gitignore │ ├── GMUtils │ └── build.gradle │ ├── build.gradle │ ├── gmutilssupport │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── gmutilssupport │ │ │ ├── Activities.java │ │ │ ├── Notifier.java │ │ │ └── ui │ │ │ ├── activities │ │ │ ├── ActivityFunctions.java │ │ │ ├── BaseActivity.java │ │ │ └── BaseLegacyActivity.java │ │ │ ├── adapters │ │ │ ├── BaseListAdapter.java │ │ │ ├── BaseRecyclerAdapter.java │ │ │ ├── MultiListAdapter.java │ │ │ └── RecyclerViewPaginationListener.java │ │ │ ├── customViews │ │ │ ├── ColorPicker.kt │ │ │ └── ImageSlider.java │ │ │ ├── dialogs │ │ │ ├── BaseDialog.java │ │ │ ├── CountryCodeDialog.java │ │ │ ├── InputDialog.java │ │ │ ├── ListDialog.java │ │ │ ├── ListDialogV2.java │ │ │ ├── MessageDialog.java │ │ │ ├── MessageDialogFunctions.java │ │ │ ├── OptionsDialog.java │ │ │ ├── RetryPromptDialog.java │ │ │ └── WaitDialog.java │ │ │ ├── fragments │ │ │ ├── BaseFragment.java │ │ │ ├── BaseFragmentListener.java │ │ │ ├── BaseFragmentListenerX.java │ │ │ ├── BaseLegacyFragment.java │ │ │ └── ShowFragmentOptions.java │ │ │ ├── toast │ │ │ ├── MyToast.java │ │ │ ├── ToastCustom.java │ │ │ └── ToastNative.java │ │ │ ├── utils │ │ │ ├── DumbViewBinding.java │ │ │ └── ViewSource.kt │ │ │ └── viewModels │ │ │ └── BaseViewModel.java │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── zapp │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── gmUtilsSupport │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── gmUtilsSupport │ └── ExampleUnitTest.kt ├── GMUtilsFlutter ├── .DS_Store ├── gmutils_flutter │ ├── .gitignore │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── flutter │ │ │ │ │ │ └── app │ │ │ │ │ │ └── FlutterMultiDexApplication.java │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── app │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── launch_background.xml │ │ │ │ │ └── notif_icon.png │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── raw │ │ │ │ │ ├── chat_alert.mp3 │ │ │ │ │ └── keep.xml │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── filepaths2.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ ├── audio │ │ │ └── new_message.mp3 │ │ ├── fonts │ │ │ └── Cairo-VariableFont_slnt,wght.ttf │ │ └── images │ │ │ ├── children.png │ │ │ ├── classroom@1x.png │ │ │ ├── classroom@2x.png │ │ │ ├── icon_chat@1x.png │ │ │ ├── icon_chat@2x.png │ │ │ ├── icon_communication@1x.png │ │ │ ├── icon_communication@2x.png │ │ │ ├── icon_digital_learning@1x.png │ │ │ ├── icon_digital_learning@2x.png │ │ │ ├── icon_exam@1x.png │ │ │ ├── icon_exam@2x.png │ │ │ ├── icon_mail@1x.png │ │ │ ├── icon_mail@2x.png │ │ │ ├── lessons@1x.png │ │ │ ├── lessons@2x.png │ │ │ ├── parent_care.png │ │ │ ├── podium_rank@1x.png │ │ │ ├── podium_rank@2x.png │ │ │ ├── podium_rank@3x.png │ │ │ ├── podium_winner.png │ │ │ ├── question.png │ │ │ ├── question_bank.png │ │ │ ├── question_colored.png │ │ │ ├── square_primary.png │ │ │ ├── students@1x.png │ │ │ ├── students@2x.png │ │ │ ├── students_all@1x.png │ │ │ ├── students_all@2x.png │ │ │ ├── students_all@3x.png │ │ │ ├── students_group@1x.png │ │ │ ├── students_group@2x.png │ │ │ ├── students_group@3x.png │ │ │ ├── stuff@1x.png │ │ │ ├── stuff@2x.png │ │ │ ├── toolbar.png │ │ │ ├── triangle_primary.png │ │ │ ├── virtual_room_students@1x.png │ │ │ ├── virtual_room_students@2x.png │ │ │ ├── virtual_room_students@3x.png │ │ │ ├── virtual_room_stuff@1x.png │ │ │ ├── virtual_room_stuff@2x.png │ │ │ ├── virtual_room_stuff@3x.png │ │ │ ├── vr_logo_google_meet.png │ │ │ ├── vr_logo_teams.png │ │ │ └── vr_logo_zoom.png │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Info.plist │ │ │ ├── Runner-Bridging-Header.h │ │ │ ├── Runner.entitlements │ │ │ └── assets │ │ │ │ └── chat_alert.mp3 │ │ ├── RunnerTests │ │ │ └── RunnerTests.swift │ │ └── firebase_app_id_file.json │ ├── lib │ │ ├── data │ │ │ ├── data_source │ │ │ │ ├── misc │ │ │ │ │ ├── misc_datasource.dart │ │ │ │ │ ├── misc_datasource_mockup.dart │ │ │ │ │ ├── misc_datasource_production.dart │ │ │ │ │ └── misc_datasource_production_urls.dart │ │ │ │ ├── notifications │ │ │ │ │ ├── notifications_datasource.dart │ │ │ │ │ ├── notifications_datasource_mockup.dart │ │ │ │ │ ├── notifications_datasource_production.dart │ │ │ │ │ └── notifications_datasource_production_urls.dart │ │ │ │ ├── requests_helper.dart │ │ │ │ └── users │ │ │ │ │ ├── users_datasource.dart │ │ │ │ │ ├── users_datasource_mockup.dart │ │ │ │ │ ├── users_datasource_production.dart │ │ │ │ │ └── users_datasource_production_urls.dart │ │ │ └── models │ │ │ │ ├── attachment.dart │ │ │ │ ├── notifications │ │ │ │ ├── notification.dart │ │ │ │ └── notifications_count.dart │ │ │ │ ├── response.dart │ │ │ │ └── users │ │ │ │ ├── auth_user_account.dart │ │ │ │ ├── user_account.dart │ │ │ │ ├── user_account_header.dart │ │ │ │ └── user_account_identifier.dart │ │ ├── main.dart │ │ ├── resources │ │ │ ├── _resources.dart │ │ │ ├── audio.dart │ │ │ ├── fonts.dart │ │ │ ├── images.dart │ │ │ ├── strings.dart │ │ │ └── themes.dart │ │ ├── services │ │ │ ├── app_privilege_checker.dart │ │ │ ├── configs │ │ │ │ └── app_configs.dart │ │ │ └── notifications │ │ │ │ ├── firebase_options.dart │ │ │ │ └── notifications_handler.dart │ │ ├── ui │ │ │ ├── dialogs │ │ │ │ └── wait_dialog.dart │ │ │ ├── screens │ │ │ │ ├── auth │ │ │ │ │ ├── login │ │ │ │ │ │ ├── login_screen.dart │ │ │ │ │ │ └── login_screen_driver.dart │ │ │ │ │ └── reset_password │ │ │ │ │ │ ├── inquiry_email │ │ │ │ │ │ ├── rp_inquiry_email_screen.dart │ │ │ │ │ │ └── rp_inquiry_email_screen_driver.dart │ │ │ │ │ │ ├── set_new_password │ │ │ │ │ │ ├── rp_set_new_password_screen.dart │ │ │ │ │ │ └── rp_set_new_password_screen_driver.dart │ │ │ │ │ │ └── validate_email │ │ │ │ │ │ ├── rp_validate_email_screen.dart │ │ │ │ │ │ └── rp_validate_email_screen_driver.dart │ │ │ │ ├── home │ │ │ │ │ ├── home_screen.dart │ │ │ │ │ └── home_screen_driver.dart │ │ │ │ ├── notifications │ │ │ │ │ ├── notifications_screen.dart │ │ │ │ │ └── notifications_screen_driver.dart │ │ │ │ ├── splash │ │ │ │ │ ├── splash_screen.dart │ │ │ │ │ ├── splash_screen0.dart │ │ │ │ │ └── splash_screen_driver.dart │ │ │ │ ├── user_profile │ │ │ │ │ ├── change_email_address │ │ │ │ │ │ ├── change_email_address_screen.dart │ │ │ │ │ │ └── change_email_address_screen_driver.dart │ │ │ │ │ ├── change_password │ │ │ │ │ │ ├── change_password_screen.dart │ │ │ │ │ │ └── change_password_screen_driver.dart │ │ │ │ │ ├── user_profile_screen.dart │ │ │ │ │ └── user_profile_screen_driver.dart │ │ │ │ └── zsidemenu │ │ │ │ │ ├── sidemenu.dart │ │ │ │ │ └── sidemenu_driver.dart │ │ │ ├── utils │ │ │ │ └── iscreen_driver.dart │ │ │ └── widgets │ │ │ │ ├── dropdown_action_Properties.dart │ │ │ │ ├── my_checkbox.dart │ │ │ │ ├── my_widgets.dart │ │ │ │ ├── page_layout.dart │ │ │ │ ├── small_notifications_list.dart │ │ │ │ ├── titled_icon_button.dart │ │ │ │ └── toolbar.dart │ │ └── zgmutils │ │ │ ├── data_utils │ │ │ ├── database │ │ │ │ ├── page_info.dart │ │ │ │ ├── sql_database.dart │ │ │ │ ├── sql_database_table.dart │ │ │ │ └── sql_instructions.dart │ │ │ ├── firebase │ │ │ │ ├── fcm.dart │ │ │ │ ├── fcm_extension.dart │ │ │ │ ├── firebase_auth_manager.dart │ │ │ │ ├── firebase_configs.dart │ │ │ │ ├── firebase_database_op.dart │ │ │ │ ├── firebase_storage.dart │ │ │ │ ├── firebase_utils.dart │ │ │ │ └── response.dart │ │ │ ├── storages │ │ │ │ ├── account_storage.dart │ │ │ │ ├── app_preferences_storage.dart │ │ │ │ └── general_storage.dart │ │ │ ├── utils │ │ │ │ ├── data_security.dart │ │ │ │ ├── mappable.dart │ │ │ │ ├── result.dart │ │ │ │ └── validation_checker.dart │ │ │ └── web │ │ │ │ ├── response.dart │ │ │ │ ├── useful_apis.dart │ │ │ │ ├── web_request_executors.dart │ │ │ │ └── web_url.dart │ │ │ ├── gm_main.dart │ │ │ ├── resources │ │ │ ├── app_colors.dart │ │ │ ├── app_measurement.dart │ │ │ └── app_theme.dart │ │ │ ├── ui │ │ │ ├── dialogs │ │ │ │ ├── checkboxes_dialog.dart │ │ │ │ ├── input_dialog.dart │ │ │ │ ├── message_dialog.dart │ │ │ │ ├── options_dialog.dart │ │ │ │ ├── search_dialog.dart │ │ │ │ └── wait_dialog.dart │ │ │ ├── sheets │ │ │ │ ├── bottom_sheet_creator.dart │ │ │ │ └── picker.dart │ │ │ ├── utils │ │ │ │ ├── base_stateful_state.dart │ │ │ │ ├── base_stateless_state.dart │ │ │ │ ├── drivers_interfaces.dart │ │ │ │ └── screen_utils.dart │ │ │ └── widgets │ │ │ │ ├── _root_widget.dart │ │ │ │ ├── animator.dart │ │ │ │ ├── audio_player.dart │ │ │ │ ├── audio_recorder.dart │ │ │ │ ├── capturing_screenshot_widget.dart │ │ │ │ ├── direction_aware_textfield.dart │ │ │ │ ├── direction_aware_textview.dart │ │ │ │ ├── image_viewer_screen.dart │ │ │ │ ├── images_slider_widget.dart │ │ │ │ ├── invalidator_widget_wrapper.dart │ │ │ │ ├── my_linkify.dart │ │ │ │ ├── network_image_with_loading.dart │ │ │ │ ├── observable_widget │ │ │ │ ├── observable_value.dart │ │ │ │ └── observable_widget.dart │ │ │ │ ├── rating_bar.dart │ │ │ │ ├── search_box_widget.dart │ │ │ │ ├── timered_widget.dart │ │ │ │ ├── video_player.dart │ │ │ │ ├── web_view_screen.dart │ │ │ │ └── widgtes.dart │ │ │ └── utils │ │ │ ├── app_version_check.dart │ │ │ ├── audio_player_service.dart │ │ │ ├── avatar_utils.dart │ │ │ ├── calculations.dart │ │ │ ├── collections │ │ │ ├── dataset3.dart │ │ │ ├── dataset4.dart │ │ │ ├── pairs.dart │ │ │ └── string_set.dart │ │ │ ├── date_op.dart │ │ │ ├── device_info.dart │ │ │ ├── files │ │ │ ├── file_picker.dart │ │ │ └── files.dart │ │ │ ├── geolocation.dart │ │ │ ├── hex_color.dart │ │ │ ├── images │ │ │ ├── image_cropper.dart │ │ │ ├── image_picker.dart │ │ │ └── image_utils.dart │ │ │ ├── keyboard_manager.dart │ │ │ ├── launcher.dart │ │ │ ├── logs.dart │ │ │ ├── notifications │ │ │ └── notifications_manager.dart │ │ │ ├── package_info.dart │ │ │ └── text │ │ │ ├── html_decoder.dart │ │ │ └── text_utils.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart ├── gmutils_plugin │ ├── .gitignore │ ├── .metadata │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── blogspot │ │ │ │ └── gm4s1 │ │ │ │ └── gmutils_plugin │ │ │ │ └── GmutilsPlugin.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── com │ │ │ └── blogspot │ │ │ └── gm4s1 │ │ │ └── gmutils_plugin │ │ │ └── GmutilsPluginTest.kt │ ├── example │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── android │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── build.gradle.kts │ │ │ │ └── src │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── blogspot │ │ │ │ │ │ │ └── gm4s1 │ │ │ │ │ │ │ └── gmutils_plugin_example │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── profile │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle.kts │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ └── settings.gradle.kts │ │ ├── integration_test │ │ │ └── plugin_integration_test.dart │ │ ├── ios │ │ │ ├── .gitignore │ │ │ ├── Flutter │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ ├── Debug.xcconfig │ │ │ │ └── Release.xcconfig │ │ │ ├── Runner.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── Runner.xcscheme │ │ │ ├── Runner.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Runner │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ └── README.md │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── Runner-Bridging-Header.h │ │ │ └── RunnerTests │ │ │ │ └── RunnerTests.swift │ │ ├── lib │ │ │ └── main.dart │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── widget_test.dart │ ├── ios │ │ ├── .gitignore │ │ ├── Assets │ │ │ └── .gitkeep │ │ ├── Classes │ │ │ └── GmutilsPlugin.swift │ │ ├── Resources │ │ │ └── PrivacyInfo.xcprivacy │ │ └── gmutils_plugin.podspec │ ├── lib │ │ ├── gmutils_plugin.dart │ │ ├── gmutils_plugin_method_channel.dart │ │ └── gmutils_plugin_platform_interface.dart │ ├── pubspec.yaml │ └── test │ │ ├── gmutils_plugin_method_channel_test.dart │ │ └── gmutils_plugin_test.dart ├── how to create reusable flutter code using package tempelate.md └── how to create reusable flutter code using plugin tempelate.md ├── GMUtilsIOS ├── .DS_Store ├── GMUtils │ ├── .DS_Store │ ├── GMUtils.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcuserdata │ │ │ │ └── glorymaker.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── glorymaker.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── GMUtils.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── glorymaker.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── GMUtils │ │ ├── .DS_Store │ │ ├── AppDelegate.swift │ │ ├── Clock.swift │ │ ├── DateOp.swift │ │ ├── FrameworkResources │ │ │ ├── GMUtils.h │ │ │ └── Info.plist │ │ ├── GoogleQRAuthinticationFormatter.swift │ │ ├── ImagePicker.swift │ │ ├── ImageUtils.swift │ │ ├── InstantSearchModerator.swift │ │ ├── JSONManipulations.swift │ │ ├── Log.swift │ │ ├── Network │ │ │ ├── ImageLoader.swift │ │ │ ├── NetworkService.swift │ │ │ └── Response.swift │ │ ├── Notifications │ │ │ ├── FirebaseNotificationService.swift │ │ │ └── NotificationProcessor.swift │ │ ├── NumberFormatter.swift │ │ ├── PDFUtilities.swift │ │ ├── QRGenerator.swift │ │ ├── SharingHelper.swift │ │ ├── Storage │ │ │ ├── .DS_Store │ │ │ ├── AccountResource.swift │ │ │ └── KeychainService.swift │ │ ├── TOTPGenerator.swift │ │ ├── TextFieldExtension.swift │ │ ├── Thread.swift │ │ ├── Utils.swift │ │ ├── ValidationChecker.swift │ │ ├── localization │ │ │ ├── .DS_Store │ │ │ ├── LanguagePreference.swift │ │ │ ├── LocalizationManager.swift │ │ │ ├── StringResource.swift │ │ │ ├── ar.lproj │ │ │ │ └── Localizable.strings │ │ │ └── en.lproj │ │ │ │ └── Localizable.strings │ │ └── view controller │ │ │ ├── BaseViewController.swift │ │ │ ├── ToastViewController.swift │ │ │ ├── ViewControllerLifecycleRecorder.swift │ │ │ └── WaitPopupViewController.swift │ ├── GMUtilsExample │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── SceneDelegate.swift │ │ └── ViewController.swift │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── Alamofire │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── AFError.swift │ │ │ ├── Alamofire.swift │ │ │ ├── AlamofireExtended.swift │ │ │ ├── AuthenticationInterceptor.swift │ │ │ ├── CachedResponseHandler.swift │ │ │ ├── Combine.swift │ │ │ ├── DispatchQueue+Alamofire.swift │ │ │ ├── EventMonitor.swift │ │ │ ├── HTTPHeaders.swift │ │ │ ├── HTTPMethod.swift │ │ │ ├── MultipartFormData.swift │ │ │ ├── MultipartUpload.swift │ │ │ ├── NetworkReachabilityManager.swift │ │ │ ├── Notifications.swift │ │ │ ├── OperationQueue+Alamofire.swift │ │ │ ├── ParameterEncoder.swift │ │ │ ├── ParameterEncoding.swift │ │ │ ├── Protected.swift │ │ │ ├── RedirectHandler.swift │ │ │ ├── Request.swift │ │ │ ├── RequestInterceptor.swift │ │ │ ├── RequestTaskMap.swift │ │ │ ├── Response.swift │ │ │ ├── ResponseSerialization.swift │ │ │ ├── Result+Alamofire.swift │ │ │ ├── RetryPolicy.swift │ │ │ ├── ServerTrustEvaluation.swift │ │ │ ├── Session.swift │ │ │ ├── SessionDelegate.swift │ │ │ ├── StringEncoding+Alamofire.swift │ │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ │ ├── URLEncodedFormEncoder.swift │ │ │ ├── URLRequest+Alamofire.swift │ │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ │ └── Validation.swift │ │ ├── Firebase │ │ ├── CoreOnly │ │ │ └── Sources │ │ │ │ ├── Firebase.h │ │ │ │ └── module.modulemap │ │ ├── LICENSE │ │ └── README.md │ │ ├── FirebaseCore │ │ ├── FirebaseCore │ │ │ └── Sources │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ ├── FIRAnalyticsConfiguration.m │ │ │ │ ├── FIRApp.m │ │ │ │ ├── FIRAppAssociationRegistration.h │ │ │ │ ├── FIRAppAssociationRegistration.m │ │ │ │ ├── FIRBundleUtil.h │ │ │ │ ├── FIRBundleUtil.m │ │ │ │ ├── FIRComponent.m │ │ │ │ ├── FIRComponentContainer.m │ │ │ │ ├── FIRComponentContainerInternal.h │ │ │ │ ├── FIRComponentType.m │ │ │ │ ├── FIRConfiguration.m │ │ │ │ ├── FIRConfigurationInternal.h │ │ │ │ ├── FIRCoreDiagnosticsConnector.m │ │ │ │ ├── FIRDependency.m │ │ │ │ ├── FIRDiagnosticsData.h │ │ │ │ ├── FIRDiagnosticsData.m │ │ │ │ ├── FIRFirebaseUserAgent.h │ │ │ │ ├── FIRFirebaseUserAgent.m │ │ │ │ ├── FIRHeartbeatInfo.m │ │ │ │ ├── FIRLogger.m │ │ │ │ ├── FIROptions.m │ │ │ │ ├── FIRVersion.m │ │ │ │ ├── Private │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatInfo.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ │ │ └── Public │ │ │ │ └── FirebaseCore │ │ │ │ ├── FIRApp.h │ │ │ │ ├── FIRConfiguration.h │ │ │ │ ├── FIRLoggerLevel.h │ │ │ │ ├── FIROptions.h │ │ │ │ ├── FIRVersion.h │ │ │ │ └── FirebaseCore.h │ │ ├── Interop │ │ │ └── CoreDiagnostics │ │ │ │ └── Public │ │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ │ └── FIRCoreDiagnosticsInterop.h │ │ ├── LICENSE │ │ └── README.md │ │ ├── FirebaseCoreDiagnostics │ │ ├── Firebase │ │ │ └── CoreDiagnostics │ │ │ │ └── FIRCDLibrary │ │ │ │ ├── FIRCoreDiagnostics.m │ │ │ │ ├── Protogen │ │ │ │ └── nanopb │ │ │ │ │ ├── firebasecore.nanopb.c │ │ │ │ │ └── firebasecore.nanopb.h │ │ │ │ └── Public │ │ │ │ └── FIRCoreDiagnostics.h │ │ ├── Interop │ │ │ └── CoreDiagnostics │ │ │ │ └── Public │ │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ │ └── FIRCoreDiagnosticsInterop.h │ │ ├── LICENSE │ │ └── README.md │ │ ├── FirebaseInstallations │ │ ├── FirebaseCore │ │ │ └── Sources │ │ │ │ └── Private │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatInfo.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ ├── FirebaseInstallations │ │ │ └── Source │ │ │ │ └── Library │ │ │ │ ├── Errors │ │ │ │ ├── FIRInstallationsErrorUtil.h │ │ │ │ ├── FIRInstallationsErrorUtil.m │ │ │ │ ├── FIRInstallationsHTTPError.h │ │ │ │ └── FIRInstallationsHTTPError.m │ │ │ │ ├── FIRInstallations.m │ │ │ │ ├── FIRInstallationsAuthTokenResult.m │ │ │ │ ├── FIRInstallationsAuthTokenResultInternal.h │ │ │ │ ├── FIRInstallationsItem.h │ │ │ │ ├── FIRInstallationsItem.m │ │ │ │ ├── FIRInstallationsLogger.h │ │ │ │ ├── FIRInstallationsLogger.m │ │ │ │ ├── IIDMigration │ │ │ │ ├── FIRInstallationsIIDStore.h │ │ │ │ ├── FIRInstallationsIIDStore.m │ │ │ │ ├── FIRInstallationsIIDTokenStore.h │ │ │ │ └── FIRInstallationsIIDTokenStore.m │ │ │ │ ├── InstallationsAPI │ │ │ │ ├── FIRInstallationsAPIService.h │ │ │ │ ├── FIRInstallationsAPIService.m │ │ │ │ ├── FIRInstallationsItem+RegisterInstallationAPI.h │ │ │ │ └── FIRInstallationsItem+RegisterInstallationAPI.m │ │ │ │ ├── InstallationsIDController │ │ │ │ ├── FIRCurrentDateProvider.h │ │ │ │ ├── FIRCurrentDateProvider.m │ │ │ │ ├── FIRInstallationsBackoffController.h │ │ │ │ ├── FIRInstallationsBackoffController.m │ │ │ │ ├── FIRInstallationsIDController.h │ │ │ │ ├── FIRInstallationsIDController.m │ │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.h │ │ │ │ ├── FIRInstallationsSingleOperationPromiseCache.m │ │ │ │ └── FIRInstallationsStatus.h │ │ │ │ ├── InstallationsStore │ │ │ │ ├── FIRInstallationsStore.h │ │ │ │ ├── FIRInstallationsStore.m │ │ │ │ ├── FIRInstallationsStoredAuthToken.h │ │ │ │ ├── FIRInstallationsStoredAuthToken.m │ │ │ │ ├── FIRInstallationsStoredItem.h │ │ │ │ └── FIRInstallationsStoredItem.m │ │ │ │ ├── Private │ │ │ │ └── FirebaseInstallationsInternal.h │ │ │ │ └── Public │ │ │ │ └── FirebaseInstallations │ │ │ │ ├── FIRInstallations.h │ │ │ │ ├── FIRInstallationsAuthTokenResult.h │ │ │ │ ├── FIRInstallationsErrors.h │ │ │ │ └── FirebaseInstallations.h │ │ ├── LICENSE │ │ └── README.md │ │ ├── FirebaseMessaging │ │ ├── FirebaseCore │ │ │ └── Sources │ │ │ │ └── Private │ │ │ │ ├── FIRAppInternal.h │ │ │ │ ├── FIRComponent.h │ │ │ │ ├── FIRComponentContainer.h │ │ │ │ ├── FIRComponentType.h │ │ │ │ ├── FIRCoreDiagnosticsConnector.h │ │ │ │ ├── FIRDependency.h │ │ │ │ ├── FIRHeartbeatInfo.h │ │ │ │ ├── FIRLibrary.h │ │ │ │ ├── FIRLogger.h │ │ │ │ ├── FIROptionsInternal.h │ │ │ │ └── FirebaseCoreInternal.h │ │ ├── FirebaseInstallations │ │ │ └── Source │ │ │ │ └── Library │ │ │ │ └── Private │ │ │ │ └── FirebaseInstallationsInternal.h │ │ ├── FirebaseMessaging │ │ │ └── Sources │ │ │ │ ├── FIRMessaging.m │ │ │ │ ├── FIRMessagingAnalytics.h │ │ │ │ ├── FIRMessagingAnalytics.m │ │ │ │ ├── FIRMessagingCode.h │ │ │ │ ├── FIRMessagingConstants.h │ │ │ │ ├── FIRMessagingConstants.m │ │ │ │ ├── FIRMessagingContextManagerService.h │ │ │ │ ├── FIRMessagingContextManagerService.m │ │ │ │ ├── FIRMessagingDefines.h │ │ │ │ ├── FIRMessagingExtensionHelper.m │ │ │ │ ├── FIRMessagingLogger.h │ │ │ │ ├── FIRMessagingLogger.m │ │ │ │ ├── FIRMessagingPendingTopicsList.h │ │ │ │ ├── FIRMessagingPendingTopicsList.m │ │ │ │ ├── FIRMessagingPersistentSyncMessage.h │ │ │ │ ├── FIRMessagingPersistentSyncMessage.m │ │ │ │ ├── FIRMessagingPubSub.h │ │ │ │ ├── FIRMessagingPubSub.m │ │ │ │ ├── FIRMessagingRemoteNotificationsProxy.h │ │ │ │ ├── FIRMessagingRemoteNotificationsProxy.m │ │ │ │ ├── FIRMessagingRmqManager.h │ │ │ │ ├── FIRMessagingRmqManager.m │ │ │ │ ├── FIRMessagingSyncMessageManager.h │ │ │ │ ├── FIRMessagingSyncMessageManager.m │ │ │ │ ├── FIRMessagingTopicOperation.h │ │ │ │ ├── FIRMessagingTopicOperation.m │ │ │ │ ├── FIRMessagingTopicsCommon.h │ │ │ │ ├── FIRMessagingUtilities.h │ │ │ │ ├── FIRMessagingUtilities.m │ │ │ │ ├── FIRMessaging_Private.h │ │ │ │ ├── FirebaseMessaging.h │ │ │ │ ├── Interop │ │ │ │ └── FIRMessagingInterop.h │ │ │ │ ├── NSDictionary+FIRMessaging.h │ │ │ │ ├── NSDictionary+FIRMessaging.m │ │ │ │ ├── NSError+FIRMessaging.h │ │ │ │ ├── NSError+FIRMessaging.m │ │ │ │ ├── Public │ │ │ │ └── FirebaseMessaging │ │ │ │ │ ├── FIRMessaging.h │ │ │ │ │ ├── FIRMessagingExtensionHelper.h │ │ │ │ │ └── FirebaseMessaging.h │ │ │ │ └── Token │ │ │ │ ├── FIRMessagingAPNSInfo.h │ │ │ │ ├── FIRMessagingAPNSInfo.m │ │ │ │ ├── FIRMessagingAuthKeychain.h │ │ │ │ ├── FIRMessagingAuthKeychain.m │ │ │ │ ├── FIRMessagingAuthService.h │ │ │ │ ├── FIRMessagingAuthService.m │ │ │ │ ├── FIRMessagingBackupExcludedPlist.h │ │ │ │ ├── FIRMessagingBackupExcludedPlist.m │ │ │ │ ├── FIRMessagingCheckinPreferences.h │ │ │ │ ├── FIRMessagingCheckinPreferences.m │ │ │ │ ├── FIRMessagingCheckinService.h │ │ │ │ ├── FIRMessagingCheckinService.m │ │ │ │ ├── FIRMessagingCheckinStore.h │ │ │ │ ├── FIRMessagingCheckinStore.m │ │ │ │ ├── FIRMessagingKeychain.h │ │ │ │ ├── FIRMessagingKeychain.m │ │ │ │ ├── FIRMessagingTokenDeleteOperation.h │ │ │ │ ├── FIRMessagingTokenDeleteOperation.m │ │ │ │ ├── FIRMessagingTokenFetchOperation.h │ │ │ │ ├── FIRMessagingTokenFetchOperation.m │ │ │ │ ├── FIRMessagingTokenInfo.h │ │ │ │ ├── FIRMessagingTokenInfo.m │ │ │ │ ├── FIRMessagingTokenManager.h │ │ │ │ ├── FIRMessagingTokenManager.m │ │ │ │ ├── FIRMessagingTokenOperation.h │ │ │ │ ├── FIRMessagingTokenOperation.m │ │ │ │ ├── FIRMessagingTokenStore.h │ │ │ │ └── FIRMessagingTokenStore.m │ │ ├── Interop │ │ │ └── Analytics │ │ │ │ └── Public │ │ │ │ ├── FIRAnalyticsInterop.h │ │ │ │ ├── FIRAnalyticsInteropListener.h │ │ │ │ ├── FIRInteropEventNames.h │ │ │ │ └── FIRInteropParameterNames.h │ │ ├── LICENSE │ │ └── README.md │ │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport │ │ │ ├── GDTCCTLibrary │ │ │ │ ├── GDTCCTCompressionHelper.m │ │ │ │ ├── GDTCCTNanopbHelpers.m │ │ │ │ ├── GDTCCTUploadOperation.m │ │ │ │ ├── GDTCCTUploader.m │ │ │ │ ├── GDTCOREvent+GDTCCTSupport.m │ │ │ │ ├── Private │ │ │ │ │ ├── GDTCCTCompressionHelper.h │ │ │ │ │ ├── GDTCCTNanopbHelpers.h │ │ │ │ │ ├── GDTCCTUploadOperation.h │ │ │ │ │ └── GDTCCTUploader.h │ │ │ │ ├── Protogen │ │ │ │ │ └── nanopb │ │ │ │ │ │ ├── cct.nanopb.c │ │ │ │ │ │ └── cct.nanopb.h │ │ │ │ └── Public │ │ │ │ │ └── GDTCOREvent+GDTCCTSupport.h │ │ │ └── GDTCORLibrary │ │ │ │ ├── GDTCORAssert.m │ │ │ │ ├── GDTCORClock.m │ │ │ │ ├── GDTCORConsoleLogger.m │ │ │ │ ├── GDTCORDirectorySizeTracker.m │ │ │ │ ├── GDTCOREndpoints.m │ │ │ │ ├── GDTCOREvent.m │ │ │ │ ├── GDTCORFlatFileStorage+Promises.m │ │ │ │ ├── GDTCORFlatFileStorage.m │ │ │ │ ├── GDTCORLifecycle.m │ │ │ │ ├── GDTCORPlatform.m │ │ │ │ ├── GDTCORReachability.m │ │ │ │ ├── GDTCORRegistrar.m │ │ │ │ ├── GDTCORStorageEventSelector.m │ │ │ │ ├── GDTCORTransformer.m │ │ │ │ ├── GDTCORTransport.m │ │ │ │ ├── GDTCORUploadBatch.m │ │ │ │ ├── GDTCORUploadCoordinator.m │ │ │ │ ├── Internal │ │ │ │ ├── GDTCORAssert.h │ │ │ │ ├── GDTCORDirectorySizeTracker.h │ │ │ │ ├── GDTCORLifecycle.h │ │ │ │ ├── GDTCORPlatform.h │ │ │ │ ├── GDTCORReachability.h │ │ │ │ ├── GDTCORRegistrar.h │ │ │ │ ├── GDTCORStorageEventSelector.h │ │ │ │ ├── GDTCORStorageProtocol.h │ │ │ │ └── GDTCORUploader.h │ │ │ │ ├── Private │ │ │ │ ├── GDTCOREndpoints_Private.h │ │ │ │ ├── GDTCOREvent_Private.h │ │ │ │ ├── GDTCORFlatFileStorage+Promises.h │ │ │ │ ├── GDTCORFlatFileStorage.h │ │ │ │ ├── GDTCORReachability_Private.h │ │ │ │ ├── GDTCORRegistrar_Private.h │ │ │ │ ├── GDTCORTransformer.h │ │ │ │ ├── GDTCORTransformer_Private.h │ │ │ │ ├── GDTCORTransport_Private.h │ │ │ │ ├── GDTCORUploadBatch.h │ │ │ │ └── GDTCORUploadCoordinator.h │ │ │ │ └── Public │ │ │ │ └── GoogleDataTransport │ │ │ │ ├── GDTCORClock.h │ │ │ │ ├── GDTCORConsoleLogger.h │ │ │ │ ├── GDTCOREndpoints.h │ │ │ │ ├── GDTCOREvent.h │ │ │ │ ├── GDTCOREventDataObject.h │ │ │ │ ├── GDTCOREventTransformer.h │ │ │ │ ├── GDTCORTargets.h │ │ │ │ ├── GDTCORTransport.h │ │ │ │ └── GoogleDataTransport.h │ │ ├── LICENSE │ │ └── README.md │ │ ├── GoogleUtilities │ │ ├── GoogleUtilities │ │ │ ├── AppDelegateSwizzler │ │ │ │ ├── GULAppDelegateSwizzler.m │ │ │ │ ├── GULSceneDelegateSwizzler.m │ │ │ │ ├── Internal │ │ │ │ │ ├── GULAppDelegateSwizzler_Private.h │ │ │ │ │ └── GULSceneDelegateSwizzler_Private.h │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULAppDelegateSwizzler.h │ │ │ │ │ ├── GULApplication.h │ │ │ │ │ └── GULSceneDelegateSwizzler.h │ │ │ ├── Common │ │ │ │ └── GULLoggerCodes.h │ │ │ ├── Environment │ │ │ │ ├── GULHeartbeatDateStorage.m │ │ │ │ ├── GULHeartbeatDateStorageUserDefaults.m │ │ │ │ ├── GULSecureCoding.m │ │ │ │ ├── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ │ ├── GULAppEnvironmentUtil.h │ │ │ │ │ │ ├── GULHeartbeatDateStorable.h │ │ │ │ │ │ ├── GULHeartbeatDateStorage.h │ │ │ │ │ │ ├── GULHeartbeatDateStorageUserDefaults.h │ │ │ │ │ │ ├── GULKeychainStorage.h │ │ │ │ │ │ ├── GULKeychainUtils.h │ │ │ │ │ │ ├── GULSecureCoding.h │ │ │ │ │ │ ├── GULURLSessionDataResponse.h │ │ │ │ │ │ └── NSURLSession+GULPromises.h │ │ │ │ ├── SecureStorage │ │ │ │ │ ├── GULKeychainStorage.m │ │ │ │ │ └── GULKeychainUtils.m │ │ │ │ ├── URLSessionPromiseWrapper │ │ │ │ │ ├── GULURLSessionDataResponse.m │ │ │ │ │ └── NSURLSession+GULPromises.m │ │ │ │ └── third_party │ │ │ │ │ └── GULAppEnvironmentUtil.m │ │ │ ├── Logger │ │ │ │ ├── GULLogger.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULLogger.h │ │ │ │ │ └── GULLoggerLevel.h │ │ │ ├── NSData+zlib │ │ │ │ ├── GULNSData+zlib.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ └── GULNSData+zlib.h │ │ │ ├── Network │ │ │ │ ├── GULMutableDictionary.m │ │ │ │ ├── GULNetwork.m │ │ │ │ ├── GULNetworkConstants.m │ │ │ │ ├── GULNetworkInternal.h │ │ │ │ ├── GULNetworkURLSession.m │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ ├── GULMutableDictionary.h │ │ │ │ │ ├── GULNetwork.h │ │ │ │ │ ├── GULNetworkConstants.h │ │ │ │ │ ├── GULNetworkLoggerProtocol.h │ │ │ │ │ ├── GULNetworkMessageCode.h │ │ │ │ │ └── GULNetworkURLSession.h │ │ │ ├── Reachability │ │ │ │ ├── GULReachabilityChecker+Internal.h │ │ │ │ ├── GULReachabilityChecker.m │ │ │ │ ├── GULReachabilityMessageCode.h │ │ │ │ └── Public │ │ │ │ │ └── GoogleUtilities │ │ │ │ │ └── GULReachabilityChecker.h │ │ │ └── UserDefaults │ │ │ │ ├── GULUserDefaults.m │ │ │ │ └── Public │ │ │ │ └── GoogleUtilities │ │ │ │ └── GULUserDefaults.h │ │ ├── LICENSE │ │ └── README.md │ │ ├── Headers │ │ ├── Private │ │ │ └── Firebase │ │ │ │ └── Firebase.h │ │ └── Public │ │ │ └── Firebase │ │ │ └── Firebase.h │ │ ├── Kingfisher │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ ├── Cache │ │ │ ├── CacheSerializer.swift │ │ │ ├── DiskStorage.swift │ │ │ ├── FormatIndicatedCacheSerializer.swift │ │ │ ├── ImageCache.swift │ │ │ ├── MemoryStorage.swift │ │ │ └── Storage.swift │ │ │ ├── Extensions │ │ │ ├── ImageView+Kingfisher.swift │ │ │ ├── NSButton+Kingfisher.swift │ │ │ ├── NSTextAttachment+Kingfisher.swift │ │ │ ├── UIButton+Kingfisher.swift │ │ │ └── WKInterfaceImage+Kingfisher.swift │ │ │ ├── General │ │ │ ├── Deprecated.swift │ │ │ ├── ImageSource │ │ │ │ ├── AVAssetImageDataProvider.swift │ │ │ │ ├── ImageDataProvider.swift │ │ │ │ ├── Resource.swift │ │ │ │ └── Source.swift │ │ │ ├── Kingfisher.swift │ │ │ ├── KingfisherError.swift │ │ │ ├── KingfisherManager.swift │ │ │ └── KingfisherOptionsInfo.swift │ │ │ ├── Image │ │ │ ├── Filter.swift │ │ │ ├── GIFAnimatedImage.swift │ │ │ ├── Image.swift │ │ │ ├── ImageDrawing.swift │ │ │ ├── ImageFormat.swift │ │ │ ├── ImageProcessor.swift │ │ │ ├── ImageProgressive.swift │ │ │ ├── ImageTransition.swift │ │ │ └── Placeholder.swift │ │ │ ├── Kingfisher.h │ │ │ ├── Networking │ │ │ ├── AuthenticationChallengeResponsable.swift │ │ │ ├── ImageDataProcessor.swift │ │ │ ├── ImageDownloader.swift │ │ │ ├── ImageDownloaderDelegate.swift │ │ │ ├── ImageModifier.swift │ │ │ ├── ImagePrefetcher.swift │ │ │ ├── RedirectHandler.swift │ │ │ ├── RequestModifier.swift │ │ │ ├── RetryStrategy.swift │ │ │ ├── SessionDataTask.swift │ │ │ └── SessionDelegate.swift │ │ │ ├── Utility │ │ │ ├── Box.swift │ │ │ ├── CallbackQueue.swift │ │ │ ├── Delegate.swift │ │ │ ├── ExtensionHelpers.swift │ │ │ ├── Result.swift │ │ │ ├── Runtime.swift │ │ │ ├── SizeExtensions.swift │ │ │ └── String+MD5.swift │ │ │ └── Views │ │ │ ├── AnimatedImageView.swift │ │ │ └── Indicator.swift │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── glorymaker.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Alamofire.xcscheme │ │ │ ├── Firebase.xcscheme │ │ │ ├── FirebaseCore.xcscheme │ │ │ ├── FirebaseCoreDiagnostics.xcscheme │ │ │ ├── FirebaseInstallations.xcscheme │ │ │ ├── FirebaseMessaging.xcscheme │ │ │ ├── GoogleDataTransport.xcscheme │ │ │ ├── GoogleUtilities.xcscheme │ │ │ ├── Kingfisher.xcscheme │ │ │ ├── Pods-GMUtils.xcscheme │ │ │ ├── Pods-GMUtilsExample.xcscheme │ │ │ ├── PromisesObjC.xcscheme │ │ │ ├── SideMenu.xcscheme │ │ │ ├── SwiftKeychainWrapper.xcscheme │ │ │ ├── nanopb.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── PromisesObjC │ │ ├── LICENSE │ │ ├── README.md │ │ └── Sources │ │ │ └── FBLPromises │ │ │ ├── FBLPromise+All.m │ │ │ ├── FBLPromise+Always.m │ │ │ ├── FBLPromise+Any.m │ │ │ ├── FBLPromise+Async.m │ │ │ ├── FBLPromise+Await.m │ │ │ ├── FBLPromise+Catch.m │ │ │ ├── FBLPromise+Delay.m │ │ │ ├── FBLPromise+Do.m │ │ │ ├── FBLPromise+Race.m │ │ │ ├── FBLPromise+Recover.m │ │ │ ├── FBLPromise+Reduce.m │ │ │ ├── FBLPromise+Retry.m │ │ │ ├── FBLPromise+Testing.m │ │ │ ├── FBLPromise+Then.m │ │ │ ├── FBLPromise+Timeout.m │ │ │ ├── FBLPromise+Validate.m │ │ │ ├── FBLPromise+Wrap.m │ │ │ ├── FBLPromise.m │ │ │ ├── FBLPromiseError.m │ │ │ └── include │ │ │ ├── FBLPromise+All.h │ │ │ ├── FBLPromise+Always.h │ │ │ ├── FBLPromise+Any.h │ │ │ ├── FBLPromise+Async.h │ │ │ ├── FBLPromise+Await.h │ │ │ ├── FBLPromise+Catch.h │ │ │ ├── FBLPromise+Delay.h │ │ │ ├── FBLPromise+Do.h │ │ │ ├── FBLPromise+Race.h │ │ │ ├── FBLPromise+Recover.h │ │ │ ├── FBLPromise+Reduce.h │ │ │ ├── FBLPromise+Retry.h │ │ │ ├── FBLPromise+Testing.h │ │ │ ├── FBLPromise+Then.h │ │ │ ├── FBLPromise+Timeout.h │ │ │ ├── FBLPromise+Validate.h │ │ │ ├── FBLPromise+Wrap.h │ │ │ ├── FBLPromise.h │ │ │ ├── FBLPromiseError.h │ │ │ ├── FBLPromisePrivate.h │ │ │ └── FBLPromises.h │ │ ├── SideMenu │ │ ├── LICENSE │ │ ├── Pod │ │ │ └── Classes │ │ │ │ ├── Deprecations.swift │ │ │ │ ├── Extensions.swift │ │ │ │ ├── Initializable.swift │ │ │ │ ├── Print.swift │ │ │ │ ├── Protected.swift │ │ │ │ ├── SideMenuAnimationController.swift │ │ │ │ ├── SideMenuInteractionController.swift │ │ │ │ ├── SideMenuManager.swift │ │ │ │ ├── SideMenuNavigationController.swift │ │ │ │ ├── SideMenuPresentationController.swift │ │ │ │ ├── SideMenuPresentationStyle.swift │ │ │ │ ├── SideMenuPushCoordinator.swift │ │ │ │ ├── SideMenuTransitionController.swift │ │ │ │ └── UITableViewVibrantCell.swift │ │ └── README.md │ │ ├── SwiftKeychainWrapper │ │ ├── LICENSE │ │ ├── README.md │ │ └── SwiftKeychainWrapper │ │ │ ├── KeychainItemAccessibility.swift │ │ │ ├── KeychainWrapper.swift │ │ │ ├── KeychainWrapperSubscript.swift │ │ │ └── SwiftKeychainWrapper.h │ │ ├── Target Support Files │ │ ├── Alamofire │ │ │ ├── Alamofire-Info.plist │ │ │ ├── Alamofire-dummy.m │ │ │ ├── Alamofire-prefix.pch │ │ │ ├── Alamofire-umbrella.h │ │ │ ├── Alamofire.debug.xcconfig │ │ │ ├── Alamofire.modulemap │ │ │ └── Alamofire.release.xcconfig │ │ ├── Firebase │ │ │ ├── Firebase.debug.xcconfig │ │ │ └── Firebase.release.xcconfig │ │ ├── FirebaseCore │ │ │ ├── FirebaseCore-Info.plist │ │ │ ├── FirebaseCore-dummy.m │ │ │ ├── FirebaseCore-umbrella.h │ │ │ ├── FirebaseCore.debug.xcconfig │ │ │ ├── FirebaseCore.modulemap │ │ │ └── FirebaseCore.release.xcconfig │ │ ├── FirebaseCoreDiagnostics │ │ │ ├── FirebaseCoreDiagnostics-Info.plist │ │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ │ ├── FirebaseCoreDiagnostics-umbrella.h │ │ │ ├── FirebaseCoreDiagnostics.debug.xcconfig │ │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ │ └── FirebaseCoreDiagnostics.release.xcconfig │ │ ├── FirebaseInstallations │ │ │ ├── FirebaseInstallations-Info.plist │ │ │ ├── FirebaseInstallations-dummy.m │ │ │ ├── FirebaseInstallations-umbrella.h │ │ │ ├── FirebaseInstallations.debug.xcconfig │ │ │ ├── FirebaseInstallations.modulemap │ │ │ └── FirebaseInstallations.release.xcconfig │ │ ├── FirebaseMessaging │ │ │ ├── FirebaseMessaging-Info.plist │ │ │ ├── FirebaseMessaging-dummy.m │ │ │ ├── FirebaseMessaging-umbrella.h │ │ │ ├── FirebaseMessaging.debug.xcconfig │ │ │ ├── FirebaseMessaging.modulemap │ │ │ └── FirebaseMessaging.release.xcconfig │ │ ├── GoogleDataTransport │ │ │ ├── GoogleDataTransport-Info.plist │ │ │ ├── GoogleDataTransport-dummy.m │ │ │ ├── GoogleDataTransport-umbrella.h │ │ │ ├── GoogleDataTransport.debug.xcconfig │ │ │ ├── GoogleDataTransport.modulemap │ │ │ └── GoogleDataTransport.release.xcconfig │ │ ├── GoogleUtilities │ │ │ ├── GoogleUtilities-Info.plist │ │ │ ├── GoogleUtilities-dummy.m │ │ │ ├── GoogleUtilities-umbrella.h │ │ │ ├── GoogleUtilities.debug.xcconfig │ │ │ ├── GoogleUtilities.modulemap │ │ │ └── GoogleUtilities.release.xcconfig │ │ ├── Kingfisher │ │ │ ├── Kingfisher-Info.plist │ │ │ ├── Kingfisher-dummy.m │ │ │ ├── Kingfisher-prefix.pch │ │ │ ├── Kingfisher-umbrella.h │ │ │ ├── Kingfisher.debug.xcconfig │ │ │ ├── Kingfisher.modulemap │ │ │ └── Kingfisher.release.xcconfig │ │ ├── Pods-GMUtils │ │ │ ├── Pods-GMUtils-Info.plist │ │ │ ├── Pods-GMUtils-acknowledgements.markdown │ │ │ ├── Pods-GMUtils-acknowledgements.plist │ │ │ ├── Pods-GMUtils-dummy.m │ │ │ ├── Pods-GMUtils-umbrella.h │ │ │ ├── Pods-GMUtils.debug.xcconfig │ │ │ ├── Pods-GMUtils.modulemap │ │ │ └── Pods-GMUtils.release.xcconfig │ │ ├── Pods-GMUtilsExample │ │ │ ├── Pods-GMUtilsExample-Info.plist │ │ │ ├── Pods-GMUtilsExample-acknowledgements.markdown │ │ │ ├── Pods-GMUtilsExample-acknowledgements.plist │ │ │ ├── Pods-GMUtilsExample-dummy.m │ │ │ ├── Pods-GMUtilsExample-frameworks-Debug-input-files.xcfilelist │ │ │ ├── Pods-GMUtilsExample-frameworks-Debug-output-files.xcfilelist │ │ │ ├── Pods-GMUtilsExample-frameworks-Release-input-files.xcfilelist │ │ │ ├── Pods-GMUtilsExample-frameworks-Release-output-files.xcfilelist │ │ │ ├── Pods-GMUtilsExample-frameworks.sh │ │ │ ├── Pods-GMUtilsExample-umbrella.h │ │ │ ├── Pods-GMUtilsExample.debug.xcconfig │ │ │ ├── Pods-GMUtilsExample.modulemap │ │ │ └── Pods-GMUtilsExample.release.xcconfig │ │ ├── PromisesObjC │ │ │ ├── PromisesObjC-Info.plist │ │ │ ├── PromisesObjC-dummy.m │ │ │ ├── PromisesObjC-umbrella.h │ │ │ ├── PromisesObjC.debug.xcconfig │ │ │ ├── PromisesObjC.modulemap │ │ │ └── PromisesObjC.release.xcconfig │ │ ├── SideMenu │ │ │ ├── SideMenu-Info.plist │ │ │ ├── SideMenu-dummy.m │ │ │ ├── SideMenu-prefix.pch │ │ │ ├── SideMenu-umbrella.h │ │ │ ├── SideMenu.debug.xcconfig │ │ │ ├── SideMenu.modulemap │ │ │ └── SideMenu.release.xcconfig │ │ ├── SwiftKeychainWrapper │ │ │ ├── SwiftKeychainWrapper-Info.plist │ │ │ ├── SwiftKeychainWrapper-dummy.m │ │ │ ├── SwiftKeychainWrapper-prefix.pch │ │ │ ├── SwiftKeychainWrapper-umbrella.h │ │ │ ├── SwiftKeychainWrapper.debug.xcconfig │ │ │ ├── SwiftKeychainWrapper.modulemap │ │ │ └── SwiftKeychainWrapper.release.xcconfig │ │ └── nanopb │ │ │ ├── nanopb-Info.plist │ │ │ ├── nanopb-dummy.m │ │ │ ├── nanopb-prefix.pch │ │ │ ├── nanopb-umbrella.h │ │ │ ├── nanopb.debug.xcconfig │ │ │ ├── nanopb.modulemap │ │ │ └── nanopb.release.xcconfig │ │ └── nanopb │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── pb.h │ │ ├── pb_common.c │ │ ├── pb_common.h │ │ ├── pb_decode.c │ │ ├── pb_decode.h │ │ ├── pb_encode.c │ │ └── pb_encode.h └── GMUtilsIOS │ ├── .DS_Store │ └── gmUtils │ └── utils │ ├── .DS_Store │ └── localization │ └── Strings │ └── .DS_Store └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /GMUtilsAndroid/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/.DS_Store -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/.gitignore -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/proguard-rules.pro -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Activities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Activities.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Animations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Animations.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/AssetsReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/AssetsReader.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Calculator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Calculator.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/ContextWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/ContextWrapper.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/DateOp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/DateOp.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Intents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Intents.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/KeypadOp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/KeypadOp.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/MessagingCenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/MessagingCenter.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Notifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/Notifier.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/StringSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/StringSet.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/firebase/fcm/FCM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/firebase/fcm/FCM.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/json/JsonBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/json/JsonBuilder.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/json/JsonReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/json/JsonReader.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/logger/Logger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/logger/Logger.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/logger/LoggerAbs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/logger/LoggerAbs.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/ui/toast/MyToast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/ui/toast/MyToast.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/FileUtils.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/ImageUtils.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/TextHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/TextHelper.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/UIUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/UIUtils.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/utils/Utils.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/widgets/ShapeView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/java/gmutils/widgets/ShapeView.kt -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_down.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_left_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_left_in.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_left_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_left_out.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_right_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_right_in.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_right_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_right_out.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/anim/slide_up.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-hdpi/dismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-hdpi/dismiss.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-hdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-hdpi/search.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/dismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/dismiss.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_aa.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ad.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ae.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_af.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ag.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ai.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_al.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_am.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ao.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_aq.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ar.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_as.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_at.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_au.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_aw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ax.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_az.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ba.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bb.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bd.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_be.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bh.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bi.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bj.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bo.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bq.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_br.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bs.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bv.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_by.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_bz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ca.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cd.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ch.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ci.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ck.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_co.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cv.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cx.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cy.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_cz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_de.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dj.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_do.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_dz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ec.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ee.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_eg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_eh.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_er.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_es.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_et.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fi.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fj.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fo.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_fr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ga.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gb.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gd.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ge.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gh.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gi.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gp.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gq.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gs.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_gy.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ht.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_hu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_id.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ie.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_il.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_im.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_in.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_io.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_iq.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ir.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_is.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_it.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_je.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_je.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_jm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_jo.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_jp.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ke.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kh.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ki.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_km.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kp.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ky.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_kz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_la.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lb.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_li.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ls.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_lv.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ly.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ma.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_md.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_me.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mh.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ml.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mo.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mp.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mq.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ms.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mv.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mx.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_my.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_mz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_na.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ne.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ng.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ni.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_no.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_np.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_nz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_om.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pa.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pe.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ph.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ps.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_pw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_py.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_qa.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_re.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ro.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_rs.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ru.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_rw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sa.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sb.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sd.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_se.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sh.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_si.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sj.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_so.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ss.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_st.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sv.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sx.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sy.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_sz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_td.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_th.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tj.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tk.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tl.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_to.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tr.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tv.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_tz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ua.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ug.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_um.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_us.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_uy.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_uz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_va.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vc.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ve.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vg.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vi.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vn.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_vu.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_wf.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ws.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_ye.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_yt.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_za.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_zm.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_zw.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_zz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/flag_zz.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-mdpi/search.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xhdpi/dismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xhdpi/dismiss.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xhdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xhdpi/search.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xxhdpi/dismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xxhdpi/dismiss.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xxhdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable-xxhdpi/search.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/arrow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/arrow_down.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/button_solid_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/button_solid_red.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/person.png -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/toast_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/drawable/toast_frame.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/adapter_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/adapter_colors.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/adapter_colors2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/adapter_colors2.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/color_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/color_picker.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_input_gm4s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_input_gm4s.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_list_gm4s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_list_gm4s.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_wait_hor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_wait_hor.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_wait_ver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/dialog_wait_ver.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/mytoast_gmutils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/layout/mytoast_gmutils.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-sw800dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-sw800dp/dimens.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/test/java/gmutils/LoggerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/test/java/gmutils/LoggerTest.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils/src/test/java/gmutils/StringSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils/src/test/java/gmutils/StringSetTest.java -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/google-services.json -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/ks -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/proguard-rules.pro -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/GMUtils_Example/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/gradle.properties -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/gradlew -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/gradlew.bat -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtils/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtils/settings.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/.gitignore -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/GMUtils/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/GMUtils/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gmutilssupport/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gmutilssupport/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gmutilssupport/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gmutilssupport/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gmutilssupport/proguard-rules.pro -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gradle.properties -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gradlew -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/gradlew.bat -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/settings.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/build.gradle -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/proguard-rules.pro -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsAndroid/GMUtilsSupport/zapp/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /GMUtilsFlutter/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/.DS_Store -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/README.md -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/analysis_options.yaml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/app/build.gradle -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/app/src/main/res/raw/keep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/app/src/main/res/raw/keep.xml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/build.gradle -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/gradle.properties -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/android/settings.gradle -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/audio/new_message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/audio/new_message.mp3 -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/children.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/children.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/classroom@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/classroom@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/classroom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/classroom@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_chat@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_chat@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_chat@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_communication@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_communication@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_communication@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_communication@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_exam@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_exam@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_exam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_exam@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_mail@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_mail@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/icon_mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/icon_mail@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/lessons@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/lessons@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/lessons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/lessons@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/parent_care.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/parent_care.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/podium_rank@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/podium_rank@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/podium_rank@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/podium_rank@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/podium_rank@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/podium_rank@3x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/podium_winner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/podium_winner.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/question.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/question_bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/question_bank.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/question_colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/question_colored.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/square_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/square_primary.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students_all@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students_all@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students_all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students_all@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students_all@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students_all@3x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students_group@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students_group@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students_group@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students_group@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/students_group@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/students_group@3x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/stuff@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/stuff@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/stuff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/stuff@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/toolbar.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/triangle_primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/triangle_primary.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/virtual_room_stuff@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/virtual_room_stuff@1x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/virtual_room_stuff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/virtual_room_stuff@2x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/virtual_room_stuff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/virtual_room_stuff@3x.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/vr_logo_google_meet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/vr_logo_google_meet.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/vr_logo_teams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/vr_logo_teams.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/assets/images/vr_logo_zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/assets/images/vr_logo_zoom.png -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Podfile -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner/Info.plist -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/Runner/assets/chat_alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/Runner/assets/chat_alert.mp3 -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/data/data_source/requests_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/data/data_source/requests_helper.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/data/models/attachment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/data/models/attachment.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/data/models/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/data/models/response.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/data/models/users/user_account.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/data/models/users/user_account.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/main.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/resources/_resources.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/resources/_resources.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/resources/audio.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/resources/audio.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/resources/fonts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/resources/fonts.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/resources/images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/resources/images.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/resources/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/resources/strings.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/resources/themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/resources/themes.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/services/app_privilege_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/services/app_privilege_checker.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/services/configs/app_configs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/services/configs/app_configs.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/dialogs/wait_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/dialogs/wait_dialog.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/screens/home/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/screens/home/home_screen.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/screens/splash/splash_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/screens/splash/splash_screen.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/screens/splash/splash_screen0.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/screens/splash/splash_screen0.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/screens/zsidemenu/sidemenu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/screens/zsidemenu/sidemenu.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/utils/iscreen_driver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/utils/iscreen_driver.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/my_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/my_checkbox.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/my_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/my_widgets.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/page_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/page_layout.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/titled_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/titled_icon_button.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/toolbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/ui/widgets/toolbar.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/firebase/fcm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/firebase/fcm.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/utils/result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/utils/result.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/web/response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/web/response.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/web/web_url.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/data_utils/web/web_url.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/gm_main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/gm_main.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/resources/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/resources/app_colors.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/resources/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/resources/app_theme.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/dialogs/input_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/dialogs/input_dialog.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/dialogs/wait_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/dialogs/wait_dialog.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/sheets/picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/sheets/picker.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/utils/screen_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/utils/screen_utils.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/_root_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/_root_widget.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/animator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/animator.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/audio_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/audio_player.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/my_linkify.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/my_linkify.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/rating_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/rating_bar.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/video_player.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/widgtes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/ui/widgets/widgtes.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/app_version_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/app_version_check.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/avatar_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/avatar_utils.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/calculations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/calculations.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/collections/pairs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/collections/pairs.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/date_op.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/date_op.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/device_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/device_info.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/files/file_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/files/file_picker.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/files/files.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/files/files.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/geolocation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/geolocation.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/hex_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/hex_color.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/keyboard_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/keyboard_manager.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/launcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/launcher.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/logs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/logs.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/package_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/package_info.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/text/html_decoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/text/html_decoder.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/text/text_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/lib/zgmutils/utils/text/text_utils.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/pubspec.lock -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/pubspec.yaml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_flutter/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_flutter/test/widget_test.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/.metadata -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.0.1 2 | 3 | * TODO: Describe initial release. 4 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: Add your license here. 2 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/README.md -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/analysis_options.yaml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/android/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/android/build.gradle -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'gmutils_plugin' 2 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/README.md -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/analysis_options.yaml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/android/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/android/app/build.gradle.kts -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/android/build.gradle.kts -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/android/gradle.properties -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/android/settings.gradle.kts -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/ios/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/lib/main.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/pubspec.lock -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/pubspec.yaml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/example/test/widget_test.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/ios/.gitignore -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/ios/Classes/GmutilsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/ios/Classes/GmutilsPlugin.swift -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/ios/Resources/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/ios/Resources/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/ios/gmutils_plugin.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/ios/gmutils_plugin.podspec -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/lib/gmutils_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/lib/gmutils_plugin.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/lib/gmutils_plugin_method_channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/lib/gmutils_plugin_method_channel.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/lib/gmutils_plugin_platform_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/lib/gmutils_plugin_platform_interface.dart -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/pubspec.yaml -------------------------------------------------------------------------------- /GMUtilsFlutter/gmutils_plugin/test/gmutils_plugin_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsFlutter/gmutils_plugin/test/gmutils_plugin_test.dart -------------------------------------------------------------------------------- /GMUtilsIOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/AppDelegate.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Clock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Clock.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/DateOp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/DateOp.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/FrameworkResources/GMUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/FrameworkResources/GMUtils.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/FrameworkResources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/FrameworkResources/Info.plist -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/GoogleQRAuthinticationFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/GoogleQRAuthinticationFormatter.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/ImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/ImagePicker.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/ImageUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/ImageUtils.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/InstantSearchModerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/InstantSearchModerator.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/JSONManipulations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/JSONManipulations.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Log.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Network/ImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Network/ImageLoader.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Network/NetworkService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Network/NetworkService.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Network/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Network/Response.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Notifications/NotificationProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Notifications/NotificationProcessor.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/NumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/NumberFormatter.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/PDFUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/PDFUtilities.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/QRGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/QRGenerator.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/SharingHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/SharingHelper.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Storage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Storage/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Storage/AccountResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Storage/AccountResource.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Storage/KeychainService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Storage/KeychainService.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/TOTPGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/TOTPGenerator.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/TextFieldExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/TextFieldExtension.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Thread.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Thread.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/Utils.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/ValidationChecker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/ValidationChecker.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/localization/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/localization/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/localization/LanguagePreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/localization/LanguagePreference.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/localization/LocalizationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/localization/LocalizationManager.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/localization/StringResource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/localization/StringResource.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/localization/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/localization/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/view controller/BaseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/view controller/BaseViewController.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/view controller/ToastViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/view controller/ToastViewController.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtils/view controller/WaitPopupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtils/view controller/WaitPopupViewController.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/AppDelegate.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/Info.plist -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/SceneDelegate.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/GMUtilsExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/GMUtilsExample/ViewController.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Podfile -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Podfile.lock -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/AuthenticationInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/AuthenticationInterceptor.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/OperationQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/OperationQueue+Alamofire.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/StringEncoding+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/StringEncoding+Alamofire.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Firebase/CoreOnly/Sources/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Firebase/CoreOnly/Sources/module.modulemap -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Firebase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Firebase/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Firebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Firebase/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRApp.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRComponent.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRLogger.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIROptions.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCore/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCoreDiagnostics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCoreDiagnostics/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseCoreDiagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseCoreDiagnostics/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseInstallations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseInstallations/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseInstallations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseInstallations/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseMessaging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseMessaging/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/FirebaseMessaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/FirebaseMessaging/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/GoogleDataTransport/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/GoogleDataTransport/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/GoogleDataTransport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/GoogleDataTransport/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/GoogleUtilities/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/GoogleUtilities/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/GoogleUtilities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/GoogleUtilities/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/ImageCache.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/General/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/General/Deprecated.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/General/Kingfisher.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/General/KingfisherError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/General/KingfisherError.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageFormat.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageProcessor.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageProgressive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageProgressive.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/ImageTransition.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Image/Placeholder.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Delegate.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/Runtime.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Utility/String+MD5.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Kingfisher/Sources/Views/Indicator.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Manifest.lock -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/PromisesObjC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/PromisesObjC/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/PromisesObjC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/PromisesObjC/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise+Do.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/PromisesObjC/Sources/FBLPromises/FBLPromise.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Deprecations.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Extensions.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Initializable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Initializable.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Print.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Print.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/Protected.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/SideMenuManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/Pod/Classes/SideMenuManager.swift -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SideMenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SideMenu/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SwiftKeychainWrapper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SwiftKeychainWrapper/LICENSE -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/SwiftKeychainWrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/SwiftKeychainWrapper/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/SideMenu/SideMenu-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/SideMenu/SideMenu-dummy.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/SideMenu/SideMenu.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/SideMenu/SideMenu.modulemap -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-Info.plist -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-dummy.m -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-prefix.pch -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb-umbrella.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/Target Support Files/nanopb/nanopb.modulemap -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/LICENSE.txt -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/README.md -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb_common.c -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb_common.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb_decode.c -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb_decode.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb_encode.c -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtils/Pods/nanopb/pb_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtils/Pods/nanopb/pb_encode.h -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtilsIOS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtilsIOS/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtilsIOS/gmUtils/utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtilsIOS/gmUtils/utils/.DS_Store -------------------------------------------------------------------------------- /GMUtilsIOS/GMUtilsIOS/gmUtils/utils/localization/Strings/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/GMUtilsIOS/GMUtilsIOS/gmUtils/utils/localization/Strings/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelsayed874/gmUtils/HEAD/README.md --------------------------------------------------------------------------------