iResidence | iOS Universal Real Estate App Template (Swift)

MyStream

[ad_1]

To get this product on 50 p.c low cost contact me on this link

 

LIVE PREVIEWBUY FOR $25


iResidence | iOS Universal Real Estate App Template (Swift) - 1


iResidence | iOS Universal Real Estate App Template (Swift) - 2


iResidence | iOS Universal Real Estate App Template (Swift) - 3


iResidence | iOS Universal Real Estate App Template (Swift) - 4


iResidence | iOS Universal Real Estate App Template (Swift) - 5


iResidence | iOS Universal Real Estate App Template (Swift) - 6


iResidence | iOS Universal Real Estate App Template (Swift) - 7


iResidence | iOS Universal Real Estate App Template (Swift) - 8


YouTube App presentation – https://youtu.be/dS—9MnKPs

Both iOS and Android model can share the identical Parse database


iResidence | iOS Universal Real Estate App Template (Swift) - 9


iResidence | iOS Universal Real Estate App Template (Swift) - 10

iResidence | iOS Universal Real Estate App Template (Swift) - 11

12 June 2020
• Updated code to iOS 13.4.1 and Xcode 11.4+.
• Updated code to iOS darkish mode model and up to date all permissions within the app to assist new iOS limitations.
• Updated design to assist iPhone 11 and iPhone Pro Max   

6 August 2019
• Improved the design of login display by including clear views 
• Upgraded Home display design and improved visibility subject 
• Increase the dimensions of merchandise in an inventory view alter with iPhone X, XS Max and so forth.
• Improved the design view of Profile Screen by including new labels and avatar pictures.       
• Fixed bug of SignUp/ login account direct from Facebook         
25 May 2018
• Accordingly to the brand new EU GDPR phrases, I've up to date the 'tou.html' file and Documentation.
IMPORTANT: This implies that if a User questions for his/her Account deletion, you need to do it inside 24 hours, because the GDPR's "Right to be forgotten" Article states (LINK: https://gdpr-info.eu/art-17-gdpr/)
11 May 2018
• Changed the next line in house.xml:
        android:layout_marginLeft="-1000dp" 
into:
        android:layout_marginLeft="-10000dp" 
• Edited thids line of code into the 'showHideListView()' Method in Home.java:
                showHideListView(-10000, "");

So now a portion of the 'hATListView' will not be proven on enormousger gadgets' screens 
8 May 2018
• Changed Parse model in construct.gradle into 1.16.0, as a consequence of some subject on the newest Parse SDK and FCM:
    implementation 'com.parse:parse-android:1.16.0'

• Edited 'getUserDetailsFromFB()' technique in Login.java, this line of code:
    } else { currUser.put(Configs.USER_EMAIL,  facebookID + "@facebook.com"); }
17 April 2018
• Added Firebase dependencies in construct.gradle(Module:app)
• Removed the 'com.google.android.gms:play-services:+' and up to date all dependencies to the required ones solely 
• Added the 'google-services' classpath within the dependencies{} checklist in construct.gradle(Project:)
        classpath 'com.google.gms:google-services:3.2.1'

• Added this Permission into Manifest.xml:
    <uses-permission android:identify="android.permission.RECEIVE_BOOT_COMPLETED" />

• Updated the Documentation (join your App to Firebase for FCM)
15 April 2018
• Updated to Android Studio 3.1.1
• Removed all dependencies of play-services | left solely this one in construct.gradle:
     implementation 'com.google.android.gms:play-services:+'
11 April 2018
• Updated to Android Studio 3.1
• Updated 'compileSdkVersion' and  'targetSdkVersion' to 27 in construct.gradle
• Replaced 'compile' with 'implementation' in construct.gradle (Module: app)
• Updated classpath 'com.android.instruments.construct:gradle:3.1.1' in construct.gradle (Project:)
4 April 2018
• Removed the menu folder within the left panel of Android Studio and the menu code on the underside of all of the java information
• Added RelativeLayouts as prime bars in all xml information | Added the relative code for Buttons and TextViews of their relative java information -> onCreate() strategies
• Added a back_butt.png picture into the "drawable" folder
• Added this line of code into the 'onCreate()' technique of all java information
• Updated compileSdkVersion and targetSdkVersion to '27'
20 January 2018
• Added this line within the dependencies checklist of construct.gradle (Module: app):
    compile 'com.squareup.okhttp3:okhttp:+'

iResidence is a Universal Real Estate App Template for who needs to supply a cellular service the place customers can seek for properties on the market or lease, or submit their very own ones by offering their particulars and phone data.

Since its backend is by Parse you don’t have to purchase any area/internet hosting, there are NO PHP information to add to an internet server so that you’ll avoid wasting cash for server facet.

This template is a local Android Studio mission, straightforward to customise, Parse SDK hosted on http://back4app.com, Universal.

iResidence | iOS Universal Real Estate App Template (Swift) - 12

iResidence | iOS Universal Real Estate App Template (Swift) - 13

About Parse SDK and back4app

Read this text for more information about back4app and Parse SDK: https://hubpages.com/technology/Parse-SDK-will-not-shutdown-in-thanks-to-back4app

Can I host Parse Server alone server?

Yes, though I don’t present assist for the setup course of, you may learn the official Guide right here: http://parseplatform.org

What about free assist for this template?

I can supply free assist for bugs encountered within the authentic code.
Instead, should you’ve edited the code and messed one thing up with it, I’ll apply some price to repair it both by way of TeamViewer or by checking your app mission information immediately on my pc.

How do I rename the app’s package deal identify?

Read this tutorial to discover ways to rename a package deal identify: https://hubpages.com/technology/Android-How-to-rename-an-app-package

Should I exploit the newest model of Android Studio to edit this template?

Yes, I all the time replace my apps to the newest model of the IDE and also you additionally ought to ensure you’ve up to date the Android Tools to their newest model of the Android SDK supervisor.

The demo APK crashes on startup

Make positive that the minimal Android model of your gadget is the one listed within the FEATURES part beneath. If the issue persists, please contact me by means of my profile’s contact type and ship me the Logcat message of you get when the app crashes together with the steps you made to breed the crash.
Please be aware that not all actual gadgets print an error Logcat message, on this case simply run the APK into the Android Studio’s emulator and also you’ll certainly get the crimson messages about your subject.

How do I take away AdMob banner advertisements?

  1. Enter the .xml information the place there’s an AdView and take away its code:
        <com.google.android.gms.advertisements.AdView
            android:id="@+id/admobBanner" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            advertisements:adSize="BANNER" 
            advertisements:adUnitId="@string/ADMOB_BANNER_UNIT_ID" 
            android:layout_alignParentBottom="true" 
            android:layout_centerHorizontal="true">
        </com.google.android.gms.advertisements.AdView>
    
  2. Enter the .java information the place there’s an AdRequest occasion into its onCreate() technique and take away its code:
            // Init AdMob banner
            AdView mAdView = findViewById(R.id.admobBanner);
            AdRequest adRequest = new AdRequest.Builder().construct();
            mAdView.loadAd(adRequest);
    
  3. Lastly, take away the play-services-ads reference within the construct.gradle file:
        compile 'com.google.android.gms:play-services-ads:+'
    


iResidence | iOS Universal Real Estate App Template (Swift) - 14

iResidence | iOS Universal Real Estate App Template (Swift) - 15

  • Android Studio 3.x mission – Universal – Android 5.0+
  • AdMob banners
  • Works with Parse SDK hosted on back4app
  • Send Push Notifications by means of Parse Push console on back4app
  • Browse Recent Properties on the Home display
  • Search for properties by metropolis or state, varieties and actions
  • Easily submit your individual Property by way of app
  • Share Properties on Facebook, Twitter, Mail, and so forth.
  • Open a property’s tackle on Google Maps app
  • Directly contact the admin of the app
  • Report inappropriate contents button carried out + Terms Of Use html file
  • PDF User Guide included
  • PSD graphics included
  • Easy to customise, nicely commented code

iResidence | iOS Universal Real Estate App Template (Swift) - 16

  • Apple Mac or Windows PC with their newest OS model put in
  • The newest model of Android Studio and a few information about its UI interface
  • Photoshop or another picture editor software program
  • A Google Developer account to submit apps to the Play Store
  • An AdMob account to generate your individual banner UNIT ID
  • A free account on back4app.com


iResidence | iOS Universal Real Estate App Template (Swift) - 17


iResidence | iOS Universal Real Estate App Template (Swift) - 18


iResidence | iOS Universal Real Estate App Template (Swift) - 19


iResidence | iOS Universal Real Estate App Template (Swift) - 20

[ad_2]

To get this product on 50 p.c low cost contact me on this link

 

Source

Pomento
Logo
Register New Account
Reset Password
Compare items
  • Total (0)
Compare
0
Shopping cart