That fixed it. Thank you.
will this "sync" all projects in one go?
That fixed it. Thank you.
will this "sync" all projects in one go?
It'll just resolves all the tools we need. The -self
argument allow us to run the sync command outside of project directory. If youβre running the sync command within a project directory, so we can skip the additional -self
argument. When we run sync within a project, FAST resolves required things and reconfigure classpath for IDE.
Need help with my AndroidManifest.xml. The error I am facing is that the users are redirected back to my app on screen myextension.package.Screen1
instead of myapp.package.Screen1
and I am getting screen not found error. How to correct my manifest file. I am using fast 4.1.1.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.redirect">
<application>
<activity android:name=".Screen1"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="schoollocator" />
</intent-filter>
</activity>
</application>
</manifest>